}
public static void createTable(Controller controller, String tableName) {
DataSource dataSource = DatabaseTestUtil.getDatabaseConfig(controller, "insertAccount").getDataSource();
JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
SqlRowSet tables = jdbcTemplate.queryForRowSet("show tables");
boolean tableExists = false;
while (tables.next()) {
if (tables.getString("TABLE_NAME").equals(tableName.toUpperCase())) {
tableExists = true;
break;