cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
concurrent access to sqlite
concurrent access to sqlite
Oct 6, 2010 at 1:55pm UTC
unregistered
(199)
For concurrent access to a single sqlite database, do I still need to use a mutex lock on the handle to the database( sqlite3 * ) for each thread since sqlite is ACID compliant?
Oct 6, 2010 at 2:09pm UTC
kbw
(9488)
After reading
http://www.sqlite.org/lockingv3.html,
it seems the answer is no, but I've never used it concurrently without locking.
Oct 7, 2010 at 1:35am UTC
unregistered
(199)
I got a document not found from that link
can anyone else who have used it concurrently before tell me?
@kbw
so you mean everytime you used it concurrently, you lock the handle with a mutex?
Oct 7, 2010 at 9:35am UTC
Thenero
(11)
http://www.sqlite.org/lockingv3.html
try this link (the same thing without ",")
Topic archived. No new replies allowed.