On 12 Feb 2017, at 2:27pm, Brian Macy <[email protected]> wrote: > Recently I removed a bunch of latency from my application. Suddenly I’m > getting odd errors where a record that was just inserted can’t be read by the > same process. In fact, even waiting till completion of the run, the record > never exists. I confirmed the insert is getting called with the correct > parameters, I logged everything coming back on the error log callback, and I > verified that the DB is always in auto commit.
Are you intentionally using transactions by executing BEGIN and COMMIT ? Or is each row of each table entirely independent so it doesn’t matter ? > What can I do to debug better? Are you checking the values returned from each of the SQLite function calls to make sure they’re SQLITE_OK ? Simon. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

