Here is a sample. As for a specific sqlite connection, 1. sql is executed in thread A 2. sql is prepared in thread B 3. Prepared statement in 2. is stepped and finalized in thread C
All 1. 2. 3. steps are run sequentially, which means that the step 2 runs after step 1 finished and step 3 runs after step 2 finished theoretically . Also, I can make sure the memory order between threads. Then, is it a safe way to use sqlite connection ? If not, what make it impossible? _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users