if (createString != null && createString.length() > 1) {
log.info("adding trigger to '" + table + "'");
if (log.isLoggable(Level.FINE))
log.fine(createString);
st = conn.createStatement();
st.executeUpdate(createString);
st.close();
}
tableToWatch.setStatus(TableToWatchInfo.STATUS_OK);
tableToWatch.storeStatus(this.replPrefix, this.dbPool);
}