-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
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
Bug in Queryparser for SQLite #183
Comments
$query = 'select "a:A", \'B:b\', `c:c`, :d from table',
$bind = ['d' => 'foo']; ^ this how works, previously it was trying to bind the non-existing |
as you can see in the example by adding backtick to the "specially treated characters" this problem is avoided |
This has been fixed. Closing for now. |
in sqlite a columnname containing
:
is valid, however the queryparser currently does not support this.adjusting the
$skip
and$split
fixed it for usPR: 3.x...r4ndsen:patch-2
The text was updated successfully, but these errors were encountered: