if (_needH2Shutdown) {
__log.info("Shutting down H2....");
Driver driver = new Driver();
try {
driver.connect( h2Url + ";SHUTDOWN COMPACT", new Properties());
} catch (SQLException ex) {
// Shutdown will always return an exeption!
if (ex.getErrorCode() != 45000) {
__log.error("Error shutting down H2: " + ex.getErrorCode(), ex);
}