On 1/5/17, kk <[email protected]> wrote: > All, > Many thanks for all the replies. It seems that I had now need to run > SQLite3Finalize against the PRAGMA stmts,
You should *always* run sqlite3_finalize() on every statement, before you call sqlite3_close(). No exceptions. Pragmas are no different from any other statement in this respect. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

