> -----Original Message----- > From: Balthasar Indermuehle [mailto:[EMAIL PROTECTED] > Sent: Monday, March 15, 2004 10:03 AM > To: [EMAIL PROTECTED] > Subject: [sqlite] Multiuser experience under win32 anyone? > > > Hi all, > > Has anyone been doing some testing on how sqlite performs in > a networked multiuser environment?
If you mean that multiple users will try to connect to the DB at the same time, I'd say SQLite isn't going to perform well. Traditional client-server databases put a lot of work into supporting this model efficiently (by supporting things like table-level or row-level locking, rather than database-level like SQLite) and SQLite puts no work into it. This assumes that multiple users will be reading *and* writing. If they're all just reading, SQLite might be fine. -Ken --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

