Cant add foreign key constraint in sqlite ...........
A:
As of SQLite 3.6.19, SQLite supports foreign keys. You need to enable them via:
sqlite> PRAGMA foreign_keys = ON;
They are turned off by default for backwards compatibility.
See the documentation for more details.
romandas
2010-06-01 21:18:18