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 having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
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 everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
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
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










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?