for (String table : TABLES) {
truncate(connection, table);
}
connection.commit();
} catch (SQLException e) {
throw new JDBCException("Could not commit transaction", e);
} catch (Exception e) {
connection.rollback();
throw e;
} finally {
close(connection);