Re: [sqlite] sqlite for threads

2009-11-10 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 jeff...@aol.com wrote: > I have a program which uses threads, when writing to (sometime even reading > from) SQLite, I always got the error of database is locked. http://www.sqlite.org/lockingv3.html Roger -BEGIN PGP SIGNATURE- Version: Gnu

Re: [sqlite] sqlite for threads

2009-11-10 Thread Jean-Christophe Deschamps
Hi, > > > > Maybe many others have asked this question, so I will say sorry if > > that's true. > > I have a program which uses threads, when writing to (sometime even > > reading > > from) SQLite, I always got the error of database is locked. > > I think since SQLite is a file db, so it get lock

Re: [sqlite] sqlite for threads

2009-11-10 Thread Doug
> Hello, > > Maybe many others have asked this question, so I will say sorry if > that's true. > I have a program which uses threads, when writing to (sometime even > reading > from) SQLite, I always got the error of database is locked. > I think since SQLite is a file db, so it get locked easily

[sqlite] sqlite for threads

2009-11-10 Thread JeffHua
Hello, Maybe many others have asked this question, so I will say sorry if that's true. I have a program which uses threads, when writing to (sometime even reading from) SQLite, I always got the error of database is locked. I think since SQLite is a file db, so it get locked easily by multi-th