} else if ("executeSql".equalsIgnoreCase(command)) {
ExecuteSqlCommand command = new ExecuteSqlCommand();
command.setDatabase(database);
command.setSql(getCommandParam("sql", null));
command.setSqlFile(getCommandParam("sqlFile", null));
System.out.println(command.execute());
return;
} else if ("snapshotReference".equalsIgnoreCase(command)) {
SnapshotCommand command = new SnapshotCommand();
Database referenceDatabase = createReferenceDatabaseFromCommandParams(commandParams);
command.setDatabase(referenceDatabase);