/** * The returned array will contain objects of the default type or * objects that inherit from the default. * * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function populateObjects(PDOStatement $stmt) { $results = array(); // populate the object(s) while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key = BusinessProcessServerPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj = BusinessProcessServerPeer::getInstanceFromPool($key))) { // We no longer rehydrate the object, since this can cause data loss. // See http://propel.phpdb.org/trac/ticket/509 // $obj->hydrate($row, 0, true); // rehydrate $results[] = $obj; } else { // class must be set each time from the record row $cls = BusinessProcessServerPeer::getOMClass($row, 0); $cls = substr('.' . $cls, strrpos('.' . $cls, '.') + 1); $obj = new $cls(); $obj->hydrate($row); $results[] = $obj; } // if key exists } $stmt->closeCursor(); return $results; }