View Single Post
luca's Avatar
Posts: 1,137 | Thanked: 402 times | Joined on Sep 2007 @ Catalunya
#86
Originally Posted by Bundyo View Post
The plan is to write an sqlite operation pool, since threadsafe is not the word to describe sqlite for linux At least this version.
While threadsafe is the default under windows, It has to be explicitly enabled under unix/linux (as I painfully discovered a while ago when I corrupted a database )
You'll have to check if the option is enabled in the source deb.
If it isn't, no wonder it doesn't work. if it is you can still experience locking problems if various thread try to update the database at once, not really different than having separate processes accessing the same database file, so you should be prepared to manage the case even if you're not programming a multithreaded application (it's just a matter of checking the error code and retrying and/or install a busy handler).
It's all explained in the sqlite documentation.
 

The Following User Says Thank You to luca For This Useful Post: