Cant add foreign key constraint in sqlite ...........
Asked
Active
Viewed 1,603 times
3 Answers
7
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
- 4,086
- 7
- 29
- 33
-
Direct link to this info: http://www.hwaci.com/sw/sqlite/foreignkeys.html#fk_enable – scorpiodawg Oct 20 '11 at 22:16
-1
in sqlite 3 : examples :
create table student (_id integer autoincrement primary key ,master_id integer);
create table master (_id integer autoincrement primary key , name varchar(30) );
select * from student where master_id in (select _id from master where name like '...')
Don not need foreign key (master_id) references master(_id) ; :)

Ladislav Mrnka
- 360,892
- 59
- 660
- 670

thang
- 1