You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would say that is working as intended. \ in java in an escape character and it will interpret the next character in a different way ("\i" is not event valid syntax). If you want to have a literal \ in your statement you need to escape the \ on your string. Ex: "my\\id"
When performing a query to the database (using mysql backend):
pdb incorrectly escapes the query to
where it should be (notice the double
\
)this is independent of the data in the table itself.
This behaviour does not appear in prepared statements because the escaping is delegated to the driver
The text was updated successfully, but these errors were encountered: