ar = (ActiveRecord) modelCacheClient.getCache().get(cacheKey);
if (ar != null) return ar;
}
try {
OmniDTO returnTO = getSqlService().execute(inputs,
DataProcessorTypes.DIRECT_SQL_STATEMENT_PROCESSOR, findSQL);
RowData tmpRd = returnTO.getTableData(findSQL).getRow(0);
if (tmpRd != null) {
ar = (ActiveRecord) createNewInstance();
ar.populateDataFromDatabase(tmpRd);
if (modelCacheClient.useCache("findById")) {