I have the following problem: Two application instances on two different systems must share a small database. The main problem is that both systems can only exchange data through a network folder. I have no way to configure the database server anywhere.
Is it possible to place the H2 database in a network folder and allow both instances to connect to the database (also at the same time)?
I could connect with both instances to db using native mode if I disable file locking, right? Instances can perform READ or INSERT operations on db. Can I risk data corruption using multiple concurrent inline connections?
Dirk
source share