RE: [sqlite] sqlite3_prepare() and multithreading

2005-05-21 Thread Brown, Dave
Right that's what I meant. sqlite3_prepare() using thread A, then step() and execute() using thread B. -Original Message- From: Cory Nelson [mailto:[EMAIL PROTECTED] Sent: Saturday, May 21, 2005 9:15 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] sqlite3_prepare(

Re: [sqlite] sqlite3_prepare() and multithreading

2005-05-21 Thread Cory Nelson
sqlite3_step and sqlite3_finalize don't take a sqlite3 struct, so I'm not sure how you plan to accomplish that. if you are asking to create a prepared statement in thread A then process that statement in thread B, I havn't had problems doing that. Just make sure two threads aren't making calls on