Add support for sqlite3 strict mode (disable legacy double-quoted string literal misfeature) #2233
shaicoleman
started this conversation in
General
Replies: 2 comments 2 replies
-
I agree that this feature seems like a good idea. Is this something you would like to work on implementing? The actual change should be possible in a single line, though the testing code would definitely require more than one line. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@jeremyevans, I think you'll be in a better position to implement it, and I'd appreciate it if you would do it, thanks |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The
sqlite3
gem allows to setstrict: true
when opening a database. This disablesSQLITE_DBCONFIG_DQS_DDL
,SQLITE_DBCONFIG_DQS_DML
, which allow to disable the legacy double-quoted string literal misfeature.Currently there doesn't seem a way to do the same in Sequel.
Beta Was this translation helpful? Give feedback.
All reactions