destination = (String)attrs.get("_destination");
this.initialUpdater.publishCreate(0, sqlInfo, newReplKey, destination);
if (schema != null)
table = schema + "." + table;
String sql = new String("SELECT * FROM " + table);
I_ResultCb resultHandler = new RsToSqlInfo(this.initialUpdater, sqlInfo, this.cancelledUpdates, this.transformer, newReplKey, this.rowsPerMessage, destination);
this.dbPool.select(conn, sql, autoCommit, resultHandler);
}
conn.commit();
}
catch (Exception ex) {