TableDataSet tds = null;
try
{
String tableName = SQLBuilder.getFullTableName(table, dbName);
tds = new TableDataSet(con, tableName);
Record rec = tds.addRecord();
// not the fully qualified name, insertOrUpdateRecord wants to use table as an index...
BasePeer.insertOrUpdateRecord(rec, table, dbName, criteria);
}
catch (DataSetException e)
{