-
-
Notifications
You must be signed in to change notification settings - Fork 197
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
Why are why you using back-ticks for sqlite identifiers instead of double quotes? #220
Comments
") for sqlite identifiers instead of double quotes (
"`)?") for sqlite identifiers instead of double quotes (
"`)?
") for sqlite identifiers instead of double quotes (
"`)?
It might not be a problem with SQLx. May be we can cross-check using Rusqlite? |
So I run most of what's in the tests in table.rs, I checked |
With this closed, the comments saying that |
@billy1624 I think you might want to close the SQLx issue |
Yes, we should |
If you switch to double quotes then you avoid this sqlx issue, which would allow
RETURNING
to work for SQLite for every backend (plus you are more correct according to the SQL standard))SQLite keywords
The text was updated successfully, but these errors were encountered: