*/
protected void runSQL(String sql) throws SystemException {
try {
DataSource dataSource = meetupsRegistrationPersistence.getDataSource();
SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
sql, new int[0]);
sqlUpdate.update();
}
catch (Exception e) {
throw new SystemException(e);
}
}