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
Describe the bug
Updating a field that contains a ' fails.
'
To Reproduce
configuration
{}
Expected behavior
No error, and the ' is properly escaped in the UPDATE query.
UPDATE
Screenshots If applicable, add screenshots to help explain your problem.
Application (please complete the following information):
Environment (please complete the following information):
Screenshots
See unescaped single quotes
Additional context
SQL boilerplate:
CREATE TABLE `TestingTable` ( `configuration` longtext COLLATE utf8mb3_unicode_ci NOT NULL, ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; INSERT INTO `TestingTable` (`configuration`) VALUES ('{\"title\": \"Bug à l\'apostrophe\"}');
The text was updated successfully, but these errors were encountered:
Fabio286
No branches or pull requests
Describe the bug
Updating a field that contains a
'
fails.To Reproduce
configuration
field by setting the value{}
(or whatever) as TEXTExpected behavior
No error, and the
'
is properly escaped in theUPDATE
query.Screenshots
If applicable, add screenshots to help explain your problem.
Application (please complete the following information):
Environment (please complete the following information):
Screenshots
See unescaped single quotes
Additional context
SQL boilerplate:
The text was updated successfully, but these errors were encountered: