[sqlite] Re: Multithreading Question

2005-10-21 Thread Michael J. Sviridov
M To: SQLite Subject: [sqlite] Re: Multithreading Question Michael J. Sviridov wrote: > I've got two thread's (with unique db handles), each thread does the > following: > > BEGIN EXCLUSIVE TRANSACTION; > (60,000 INSERT OR REPLACE statements into the same table) > COMMIT TRANSAC

[sqlite] Multithreading Question

2005-10-21 Thread Michael J. Sviridov
Hi All Using sqlite 3.2.7 in a multi-threaded C++ application: I've got two thread's (with unique db handles), each thread does the following: BEGIN EXCLUSIVE TRANSACTION; (60,000 INSERT OR REPLACE statements into the same table) COMMIT TRANSACTION; This works fine, as