We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 2.3.7 (also tested on 2.4.0) When inserting escaped JSON string SqlKata generates incorrect SQL:
INSERT INTO `Table` (`field`) VALUES ('{"Name":"\u111B"}') ON DUPLICATE KEY UPDATE someField=null;
Which results in adding a new row with the name of u111B which is incorrect.
u111B
Expected behavior: I expected SqlKata to escape input string, so \u111B so that becomes \\u111B.
\u111B
\\u111B
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: 2.3.7 (also tested on 2.4.0)
When inserting escaped JSON string SqlKata generates incorrect SQL:
Which results in adding a new row with the name of
u111B
which is incorrect.Expected behavior:
I expected SqlKata to escape input string, so
\u111B
so that becomes\\u111B
.The text was updated successfully, but these errors were encountered: