* @see org.xmlBlaster.contrib.replication.I_DbSpecific#addTrigger(java.sql.Connection, java.lang.String, java.lang.String, java.lang.String, org.xmlBlaster.contrib.dbwriter.info.SqlInfo)
*/
public void addTrigger(Connection conn, String catalog, String schema, String tableName) throws Exception {
TableToWatchInfo tableToWatch = getTableToWatch(conn, catalog, schema, tableName);
SqlInfo sqlInfo = new SqlInfo(this.info);
if (sqlInfo.fillMetadata(conn, catalog, schema, tableName, null, null)) {
final boolean force = true;
addTrigger(conn, tableToWatch, sqlInfo, force);
}
else
log.warning("The table='" + tableName + "' on schema='" + schema + "' and catalog='" + catalog + "' has not been found");