protected void setupDB() throws Exception {
Connection connection = null;
try {
connection = getConnection();
DatabaseConnection dbunitConnection = new DatabaseConnection(connection);
setDbType(dbunitConnection);
// note - this info should already be in the db as part of dbsetup, but just in case
// perform the refresh. Do not DELETE this data set as it may be assumed in other tests.
DatabaseOperation.REFRESH.execute(dbunitConnection, getDataSet());
} finally {