--
You received this message because you are subscribed to the Google Groups "H2 Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to h2-database...@googlegroups.com.
To post to this group, send email to h2-da...@googlegroups.com.
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.
I would probably try version 1.3.176 (2014-04-05), which is marked as the "last stable" version.The method DatabaseMetaData#getSchema(String,String) is there since about February 2011, but threw an exception back then ("unsupported"). In February 2013 (revision 4659) the method was correctly implemented ("Fix issue #438 JdbcDatabaseMetaData#getSchemas() no longer supported as of 1.3.169"). This was released in version 1.3.171 (2013-03-17).
> ran into a lot of problems with MVCC supportHow could we reproduce this ourselves?
It is actually a known "limitation". I saw an issue about it. You do not support a combo of MVCC and queries with joins + for update.
I have no idea what "deleteDb()"is. Is it a method on some class? A command I send via the connection? ??
--
You received this message because you are subscribed to a topic in the Google Groups "H2 Database" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/h2-database/dQaB7-9yYG8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to h2-database+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "H2 Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "H2 Database" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/h2-database/dQaB7-9yYG8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to h2-database...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to h2-database...@googlegroups.com.
We added db_close_delay because we have tests that open a Hibernate Session (connection), do some work, close that Session (thus closing that connection), open a new Session and try to do some work with the stuff done in the initial Session. But H2 had dropped the database in between.