static Pattern keyPattern = Pattern.compile("([^(]+)\\(([^)]+)\\)");
// Allows people to clear the cache, so Fixture is not stateful
public static Map<String, Object> idCache = new HashMap<String, Object>();
public static void executeSQL(String sqlScript) {
for (CharSequence sql : new SQLSplitter(sqlScript)) {
final String s = sql.toString().trim();
if (s.length() > 0) {
DB.execute(s);
}
}