/** * Selects a collection of Tasquescomentaris objects pre-filled with all related objects. * * @param Criteria $criteria * @param PropelPDO $con * @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN * @return array Array of Tasquescomentaris objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $criteria = clone $criteria; // Set the correct dbName if it has not been overridden if ($criteria->getDbName() == Propel::getDefaultDB()) { $criteria->setDbName(self::DATABASE_NAME); } TasquescomentarisPeer::addSelectColumns($criteria); $startcol2 = TasquescomentarisPeer::NUM_COLUMNS - TasquescomentarisPeer::NUM_LAZY_LOAD_COLUMNS; TasquesPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + (TasquesPeer::NUM_COLUMNS - TasquesPeer::NUM_LAZY_LOAD_COLUMNS); $criteria->addJoin(TasquescomentarisPeer::TASQUES_TASQUESID, TasquesPeer::TASQUESID, $join_behavior); // symfony_behaviors behavior foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) { call_user_func($sf_hook, 'BaseTasquescomentarisPeer', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = TasquescomentarisPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = TasquescomentarisPeer::getInstanceFromPool($key1))) { // We no longer rehydrate the object, since this can cause data loss. // See http://propel.phpdb.org/trac/ticket/509 // $obj1->hydrate($row, 0, true); // rehydrate } else { $cls = TasquescomentarisPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); TasquescomentarisPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Tasques rows $key2 = TasquesPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = TasquesPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = TasquesPeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); TasquesPeer::addInstanceToPool($obj2, $key2); } // if obj2 loaded // Add the $obj1 (Tasquescomentaris) to the collection in $obj2 (Tasques) $obj2->addTasquescomentaris($obj1); } // if joined row not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }