addSchemaToWatch(conn, catalog, schema);
}
TableToWatchInfo tableToWatch = getTableToWatch(conn, catalog, schema, tableName);
if (!conn.getAutoCommit())
conn.commit(); // to be sure it is a new transaction
if (!force && tableToWatch != null && tableToWatch.isStatusOk(this, conn)) {
// send it manually since table exits already and trigger is OK.
log.info("table '" + tableName + "' is already registered, will add directly an entry in the ENTRIES Table");
String destAttrName = "?";
if (destinations == null || destinations.length == 0)