void dropTable(String table) { String sql = "DROP TABLE IF EXISTS ${table.escapeSQL}"; execute(sql); }