I've read the book from Michael Owens about SQLite and also read the parts about threads and sqlite3.
Actually it seems to be possible to use the same connection handler from different threads - but within a transaction only one thread is allowed to access the library with that particular connection handler. Is this also true for functions like "errcode" and "errmsg" ? Background: I'm writing a wrapper for VASmalltalk and in that tool it is possible to execute an external API call with a feature named "staticFuture" call (an API call is always done with the same native thread) - but this feature is time consuming. After that costly API call I would like to call the fast API calls "errcode" and "errmsg" in the virtual machine thread (which is a different native thread than the thread mentioned above). Is that possible ? Marten ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------