statements = new Statements();
statements.setStoreTableName(tableName);
}
jdbcAdapter.setStatements(statements);
if (createDataBase) {
jdbcAdapter.doCreateTables(connection);
}
connection.commit();
} catch (SQLException e) {
throw (AuditorException) new AuditorException("Exception while creating database").initCause(e);
} catch (IOException e) {