On 2/9/2011 1:42 PM, Sam Carleton wrote:
> Currently I have two and sometimes three clients access the SQLite db, all
> on the same machine.
>
> * A C# program that doesn't ever stay connection all that long.
> * An Apache application that stays connected all the time.
> * A Qt application that stays connected when it is running.
>
> I am getting report that when the Qt application is running, the Apache
> application is crashing.  The only connection is the SQLite db.

This likely means the Apache application doesn't properly handle errors 
it gets from SQLite.

> It is my understanding that SQLite is designed to allow multiple clients
> from the same computer to access the DB file at one time.

Yes. But if one of those clients starts to write, others cannot write or 
read.

> The system does far more reading then writing.

But apparently, it still does some writing.
-- 
Igor Tandetnik

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to