Replies: 1 comment 1 reply
-
This is not SQLBoiler, instead, I believe it is just how those entities are escaped when submitted through a form. You can print out the form value to confirm. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using SQLBoiler with Postgres for the back-end of a project and one thing I have noticed happening is that when I save text fields that contain single or double quotes they're being quoted using the html
'
and"
entity codes. That isn't a big problem except that they're not unescaped on the way back out so I'm currently having to do that manually.As far as I can tell the standard postgres libraries escape quotes using a backslash rather than entity codes - is this something SQL Boiler does, and if so is there a list of everything it will escape that way or a way to automatically unescape the same values on the way back out?
Beta Was this translation helpful? Give feedback.
All reactions