carter
I am learning Elixir so please bear with me. I am trying to figure out how to store complex string into the database. Using an SVG file as an example (because it has a good mix of characters for testing), what is the best way to store it into the database (Postgres/mnesia etc.). I tried converting it into base64, using sigils etc. to no avail. All of them will find some fault with certain characters within the complex string. Is there another way to do this? Thanks in advance.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
Hey @carter. Any time you have some sort of issue you’re running into, it helps if you can provide an example piece of data, as well as the code you tried to run, and the errors you ran into. It’s hard to help without this info.
carter
Thank you for the reply. Here’s some examples of what I have tried and the error I get.
** (SyntaxError) iex:1:103: keyword argument must be followed by space after: http:
Here’s another
** (SyntaxError) iex:1:762: keyword argument must be followed by space after: http:
benwilson512
I would highly recommend storing this SVG information in an actual file, and then calling
File.read!("path/to/file.svg"). Giant string literals like this are often a pain to deal with.RudManusachi
I second Ben’s recommendation to read from file.
Otherwise, you could try heredocs.. (as long as string doesn’t contain and new line followed by whitespaces and
""")carter
Thank you for your replies. The real challenge is around storing complex strings and not really SVG per se. I am using SVG as an example. Let me try another scenario. Let’s say I create a blog and allow users to create any content they like. Let’s say a user decides to embed some codes with his article. It would come with all kinds of characters that I cannot control. What is the best way to process and store to the DB a complex document like that? Heredocs is possible, but it does comes with the contstraint mentioned above. Is there a sure-fire way to handle the complex string without worrying about the content, new line, whitespace and any other surprises?
lud
What is the tool that you use to write to the database ?
Because once you have your svg string in a variable, you should not have problems with special characters unless you are bulding raw sql like this:
"INSERT INTO t VALUES('#{svg}');". This will not work.But if you use a tool like Ecto, then your variable should fit into a text or binary column.
dimitarvp
I’m not arguing the issue of just storing any random textual content in a Postgres
textcolumn?