Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • How do you compare H2 database with HSQLDB or JavaDB. I am more interested in concurrency since I don't want the database to be locked for UPDATEs when I am doing INSERTs. I believe SQLite locks the database when you perform any write to the database. Commented Apr 15, 2010 at 15:06
  • see h2database.com/html/features.html#comparison for a detailed comparison with Derby and others (not SQLite though), it details locking there. Commented Apr 15, 2010 at 15:36
  • have you personally used it in production environment? how was it? Commented Apr 15, 2010 at 15:44
  • myself not in production. But look at other's experience stackoverflow.com/questions/827220/… Commented Apr 16, 2010 at 10:34
  • @Lukas, are you sure concurrent sessions are not supported?? You really mean I cannot open two sessions to the same db? Commented Oct 20, 2011 at 8:32