if (!table.equals(""))
{
DatabaseMap dbMap = Torque.getDatabaseMap(criteria.getDbName());
if (dbMap == null)
{
throw new TorqueException("dbMap is null");
}
if (dbMap.getTable(table) == null)
{
throw new TorqueException("dbMap.getTable() is null");
}
ColumnMap[] columns = dbMap.getTable(table).getColumns();
for (int i = 0; i < columns.length; i++)