Hi Richard,

I don't see any mentioning of the optional table argument to the 
foreign_key_check pragma in: 
http://www.sqlite.org/draft/pragma.html#pragma_foreign_key_check

For example:

SQLite version 3.7.16 2013-03-02 03:25:55
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table p(k integer primary key);
sqlite> create table c(k int references p);
sqlite> insert into c values (1),(2),(3);
sqlite> pragma foreign_key_check(c);
c|1|p|0
c|2|p|0
c|3|p|0
sqlite> pragma foreign_key_check(p);
sqlite>

Thanks,
 - Levi

----- Original Message -----
From: sqlite-users@sqlite.org
To: sqlite-...@sqlite.org, sqlite-users@sqlite.org
At: Mar  2 2013 11:30:23

The anticipated release date for SQLite 3.7.16 is currently 2013-03-12.
Additional information about the forthcoming 3.7.16 release:

   (1)  http://www.sqlite.org/draft/releaselog/3_7_16.html
   (2)  http://www.sqlite.org/draft/download.html
   (3)  http://www.sqlite.org/checklists/3071600

See a summary of changes at (1).  Download a snapshot of the latest code
(in the form of an amalgamation "sqlite3.c" source file) from (2).  The
status board at (3) will show the current state of release testing.  When
the status board goes all green, we will cut the release.  The links above,
and indeed the entire http://www.sqlite.org/draft/ sub-website, will be
updated periodically between now and the official release so check back
frequently.

Please report any problems encountered.

-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to