Hi, I'm interested in turning on the foreign key support when connecting to the database. I know that it is "pragma foreign_keys = ON" but it doesn't work in the connection string...
Moreover it doesn't work if I try to turn on later:
cmd.CommandText = "PRAGMA foreign_keys=ON"
cmd.ExecuteNonQuery()
- it still doesn't force referential integrity for further SQLiteCommands.
Can you please also point a document that describes the possible parameters that can be used in the connection string?
Thanks, Tamas