-
Notifications
You must be signed in to change notification settings - Fork 48
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
Result: Could not create insert trigger when column name is a keyword #13
Comments
What SQLite version? Try using 3.39 |
Hi I tried with this one too https://github.com/nalgeon/sqlite/releases/tag/3.39.1
|
I found what it was.The table was containing a column called 'order' which is a reserved word and when trying to do any operations on it, it would give a syntax error.For instance So this is not a problem with your library.It works like a charm.So please consider this issue closed.Thanks |
oh, interesting. thanks for the info. i think that is an issue with this library (even if minor), since the generated query strings could wrap all columns in |
turnin on debugging of the library revealed the problem.It tries to
it correctly quotes new.`order` but in the insert clause it does not.Turning |
Hi
Platform Windows 10x64.
I tried to load the extension from CMD and sqlite3 with
sqlite3 -header database.sqlite -cmd ".load sqlite_zstd.dll"
but I get error " The specified module could not be found".
Then I tried loading the database together with the .dll in the tool "Db browser for SQLite" which did so successfully.But then when I run the following select statement
select zstd_enable_transparent('{"table": "notes", "column": "body", "compression_level": 19, "dict_chooser": "''a''"}')
I get error
The text was updated successfully, but these errors were encountered: