Re: SQLite on Tiger - THREADSAFE on or off ?
site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com On Mar 4, 2006, at 4:42 PM, Mark Gilbert wrote: I am using LibSQLite3.0.dylib in a multi thread app. SQLite on Tiger is built with --enable-threadsafe. -- Chris _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... I have encountered problems where access to the database from a second thread is showing the database as locked. Are you trying to use the same database handle in multiple threads? SQLite doesn't support doing so. Using SQLite via per-thread database handles should work. After some research it would appear that libsqlite must be compiled with the THREADSAFE flag set to 1 in order to support multithread access. It also implied that UNIX distributions may have this set to 0 by default. This email sent to site_archiver@lists.apple.com
participants (1)
-
Chris Hanson