carter
How to store complex strings in the database?
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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 7 of 7 Posts
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?