-
-
Notifications
You must be signed in to change notification settings - Fork 527
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
column names need to be quoted #342
Comments
|
Indeed, that is mentionned here https://github.com/tekartik/sqflite/blob/de1928b5ebf90e92a63cc2da2dff7518762e4eb1/sqflite/README.md#table-and-column-names It seems you are using raw command (rawInsert) through jaguar_query_sqflite so it is up to you (or the jaguar_query_sqflite package) to escape sqlite keywords. |
Ah, yeah, this is jaguar's fault. Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For any column named the same as a sqlite keyword, e.g. "when" or "select", the generated sql needs to put quotes around the column.
The text was updated successfully, but these errors were encountered: