Thank you.
You can read this short document for when to use SQLite Information, instead of: http://www.sqlite.org/whentouse.html
I am trying to develop a Windows-based application that is accessed by multiple users at the same time The same database. Can SQLite support multiple access at one time? Is SQLite stable in this regard? What makes SQLite better or worse than MS SQL CE?
Thank you.
Yes, SQLite can support multiple users at the same time. But it will lock the entire Database, so if you have a lot of concurrent writes, then it’s not the database you want (usually the database is locked for a few milliseconds-so for most uses it doesn’t matter). But it is well tested and It is very stable (and widely used), so you can rely on it.
You can read this short document to get information on when to use SQLite instead of: http://www.sqlite .org/whentouse.html