Hi, I developed a java application, I can test it using the eclipse.
That application is working well with H2 DB , using it and releasing it.
I made a jar out of it, and I use it in a web application, running on tomcat.
The apache tomcat is locking my db.
When I run my application in java simple application, the db is released,
but when I run it on tomcat , the db is locked.
Why ?
Before returning the final answer from the jar, I do:
if(conn!=null)
if(!conn.isClosed())
conn.close();
Thanks
Salil Vverma
Ranch Hand
Joined: Sep 06, 2009
Posts: 219
posted
0
Hi moshi,
I am curious to know why are you using H2 database rather than using mysql,which is most widely used open source database. In mysql you would not face the issue of database locking.
You can download mysql freely from the following url
Regards
Salil Verma
moshi cochem
Ranch Hand
Joined: Nov 10, 2009
Posts: 91
posted
0
Does anyone have an idea ?
thanks
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35224
7
posted
0
How does the web app use H2 - as a standalone server or in embedded mode? If it's embedded, then no other process can access it.
Hi,
But I close the connection, it is not enough ?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35224
7
posted
0
Not if you're using embedded mode. For HSQLDB, the "Closing the Database" section of the documentation would be relevant; I'm sure H2 has something similar.
moshi cochem
Ranch Hand
Joined: Nov 10, 2009
Posts: 91
posted
0
I solve it by writing in the connection: FILE_LOCK=NO
Thanks.