Re: [sqlite] multi threats parallel reading db

2006-08-18 Thread Max
Hi, > > > Please double-check your code. The error message "library routine > > > called out of sequence" is what you get when you try to use the > > > the same database connection from more than one thread at one time. > > > > If I remember correctly, there are two other cases where "library

Re: [sqlite] multi threats parallel reading db

2006-08-18 Thread drh
Tito Ciuro <[EMAIL PROTECTED]> wrote: > On Aug 18, 2006, at 6:45 AM, [EMAIL PROTECTED] wrote: > > > Please double-check your code. The error message "library routine > > called out of sequence" is what you get when you try to use the > > the same database connection from more than one thread at

Re: [sqlite] multi threats parallel reading db

2006-08-18 Thread Tito Ciuro
On Aug 18, 2006, at 6:45 AM, [EMAIL PROTECTED] wrote: Please double-check your code. The error message "library routine called out of sequence" is what you get when you try to use the the same database connection from more than one thread at one time. If I remember correctly, there are two

Re: [sqlite] multi threats parallel reading db

2006-08-18 Thread drh
Max <[EMAIL PROTECTED]> wrote: > Hi, > > I am running into problems with sqlite 3.3.6 when trying to read from a > database with multiple threats in parallel. Each threat has it's own > connection and i compiled sqlite with --enable-threadsafe. Still it will > throw exceptions if i don't keep the

[sqlite] multi threats parallel reading db

2006-08-18 Thread Max
Hi, I am running into problems with sqlite 3.3.6 when trying to read from a database with multiple threats in parallel. Each threat has it's own connection and i compiled sqlite with --enable-threadsafe. Still it will throw exceptions if i don't keep the threats from accessing it in parellel.