Csányi Pál wrote: > when will SQLite support the named foreign keys? It does support named foreign keys:
CREATE TABLE t (
id PRIMARY KEY,
k1 CONSTRAINT name_here REFERENCES t,
k2,
CONSTRAINT another_name FOREIGN KEY(k2) REFERENCES t
);
Regards,
Clemens
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

