Some of you may remember the long discussion around christmas time this year regarding threading and performance in SqLite. I mentioned that i had been working on a C++ framework which included a MySQL and SqLite wrapper.
I have since released parts of the framework, including the SQL code under the GPL. It can be found here. http://reasoning.info With examples of the SQL usage at http://reasoning.info/examples.htm For those that are interested, the SqLite driver code includes several variations which can be controlled using macros. By default it runs in the current thread and is thread and transaction safe provided that calls to the same database are wrapped in mutexes. But if you wanted to run all of the SqLite calls in a separate thread with a client/server model, you can experiement with that too. I hope some of you find it useful, and thanks again to all those who have contributed to making SqLite such a great piece of software. Regards, Emerson ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

