Embeddable database better than SQLite for java

Posted by dexter on Stack Overflow See other posts from Stack Overflow or by dexter
Published on 2010-04-12T19:11:02Z Indexed on 2010/04/12 19:13 UTC
Read the original article Hit count: 233

I am creating a web application that is accessing a SQLite database in the server. I also have "clients" that updates this same database. As we know SQLite locks the entire database during INSERTs which are done by the clients and the web application is also trying to make some UPDATEs at the same time. So my problem now is about concurrency in database access. I would like to use an embeddable database like SQLite. Any suggestions.

© Stack Overflow or respective owner

Related posts about java

Related posts about sqlite