I am testing currently a H2 DB in memory mode. I set up a connection by
h2Con = DriverManager.getConnection(
"jdbc:h2:mem:db1", "SA", "");
I want to some imports with dbunit and set up dbUnits db connection
IDataBaseConnection dBUnitConnection = new DatabaseConnection(h2con);
and the imports which i want to query later
So my question is, in memory mode, when can i close the connection? Normaly i do something like this
try{
//some sql query
}catch{
//error handling
}finally{
if(connection!=null)
connection.close()
}
But in memory if the connection is closed i loose the data? So should it stay open until i end my program?
Add
DB_CLOSE_DELAY=-1
in URLFrom H2 documentation:
So you can configure H2 to keep in-memory database intact due to the lifetime of your JVM and then you can connect and disconnect to it as you wish.
So, this:
…becomes this: