You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the foreign key enforcement in SQLite is disabled by default, would it be possible to add an option that enable it automatically?
$ sqlite3
SQLite version 3.9.2 2015-11-02 18:31:45
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> pragma foreign_keys;
0
The text was updated successfully, but these errors were encountered:
Each function which is decorated with @pragmaForeignKeys will run PRAGMA foreign_keys = ON first. Only requirement is that connection to sqlite (db) must be first parameter in doSomethingWithSQL.
Currently, the foreign key enforcement in SQLite is disabled by default, would it be possible to add an option that enable it automatically?
The text was updated successfully, but these errors were encountered: