Can SQLite support multiple users?

Yes SQLite can support multiple users at once. It does however lock the whole database when writing, so if you have lots of concurrent writes it is not the database you want (usually the time the database is locked is a few milliseconds – so for most uses this does not matter). But it is very well tested and very stable (and widely used) so you can trust it.

You may read this short document for information when to use SQLite and not: http://www.sqlite.org/whentouse.html

Leave a Comment