Larry Brasfield wrote, On 1/31/2012 8:40 AM:
< Either I have some incorrect version or don't understand how to use this:
<
< #include <sqlite3.h>
<
< int main(int argc, char** argv)
< {
<      sqlite3 *db;
<
<      PRAGMA journal_mode=WAL;
<
<   ...
<
< gcc
[various errors]

The PRAGMA is something you pass to the statement preparation API as if it was SQL.
It is not C.

So when I run an update command (to update some arbitrary record) from the sqlite3 command line, do I need to do something to do a checkpoint?
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to