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
When LIKE is used then the value is escaped once via ISupplementalDriver and passe as parameter of query. Then parameter value (already escaped) is escape again in connection panel sql dump here: https://github.com/nette/database/blob/master/src/Database/Helpers.php#L122
That results in printing double escaped parameter value and this query (with its parameters) is not that query that went to database.
I hope you understand what I mean.
The text was updated successfully, but these errors were encountered:
When LIKE is used then the value is escaped once via ISupplementalDriver and passe as parameter of query. Then parameter value (already escaped) is escape again in connection panel sql dump here:
https://github.com/nette/database/blob/master/src/Database/Helpers.php#L122
That results in printing double escaped parameter value and this query (with its parameters) is not that query that went to database.
I hope you understand what I mean.
The text was updated successfully, but these errors were encountered: