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