Re: [sqlite] SQLite in Web application

2003-10-27 Thread Matt Sergeant
On 27 Oct 2003, at 5:20, Greg Obleshchuk wrote: So if anyone is using SQLite in a web application that is used by lots of people I would love to here about any problems or just of your success. I have a *very* large scale web application using SQLite as a backend, but we segment it sensibly. Cro

RE: [sqlite] SQLite in Web application

2003-10-26 Thread Allan Edwards
If you want to do something like this, the only thing necessary is to synchronize access to your data layer. In other words, only one thread of execution should be able to access your Sqlite db at one time. To accomplish this, here is a simple solution. If you have not already put all data access