/** * 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(); // set the class once to avoid overhead in the loop $cls = LocalPeer::getOMClass(false); // populate the object(s) while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key = LocalPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj = LocalPeer::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 { $obj = new $cls(); $obj->hydrate($row); $results[] = $obj; LocalPeer::addInstanceToPool($obj, $key); } // if key exists } $stmt->closeCursor(); return $results; }
/** * Selects a collection of Gradeunit objects pre-filled with all related objects except Week. * * @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 Gradeunit objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptWeek(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $criteria = clone $criteria; // Set the correct dbName if it has not been overridden // $criteria->getDbName() will return the same object if not set to another value // so == check is okay and faster if ($criteria->getDbName() == Propel::getDefaultDB()) { $criteria->setDbName(self::DATABASE_NAME); } GradeunitPeer::addSelectColumns($criteria); $startcol2 = GradeunitPeer::NUM_COLUMNS - GradeunitPeer::NUM_LAZY_LOAD_COLUMNS; HorarioPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + (HorarioPeer::NUM_COLUMNS - HorarioPeer::NUM_LAZY_LOAD_COLUMNS); DisciplinaPeer::addSelectColumns($criteria); $startcol4 = $startcol3 + (DisciplinaPeer::NUM_COLUMNS - DisciplinaPeer::NUM_LAZY_LOAD_COLUMNS); ProfessorPeer::addSelectColumns($criteria); $startcol5 = $startcol4 + (ProfessorPeer::NUM_COLUMNS - ProfessorPeer::NUM_LAZY_LOAD_COLUMNS); PeriodoPeer::addSelectColumns($criteria); $startcol6 = $startcol5 + (PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS); LocalPeer::addSelectColumns($criteria); $startcol7 = $startcol6 + (LocalPeer::NUM_COLUMNS - LocalPeer::NUM_LAZY_LOAD_COLUMNS); $criteria->addJoin(GradeunitPeer::HORARIO_ID, HorarioPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::DISCIPLINA_ID, DisciplinaPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::PROFESSOR_ID, ProfessorPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::PERIODO_ID, PeriodoPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::LOCAL_ID, LocalPeer::ID, $join_behavior); // symfony_behaviors behavior foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) { call_user_func($sf_hook, 'BaseGradeunitPeer', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = GradeunitPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = GradeunitPeer::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 = GradeunitPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); GradeunitPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Horario rows $key2 = HorarioPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = HorarioPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = HorarioPeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); HorarioPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj2 (Horario) $obj2->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Disciplina rows $key3 = DisciplinaPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = DisciplinaPeer::getInstanceFromPool($key3); if (!$obj3) { $cls = DisciplinaPeer::getOMClass(false); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); DisciplinaPeer::addInstanceToPool($obj3, $key3); } // if $obj3 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj3 (Disciplina) $obj3->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Professor rows $key4 = ProfessorPeer::getPrimaryKeyHashFromRow($row, $startcol4); if ($key4 !== null) { $obj4 = ProfessorPeer::getInstanceFromPool($key4); if (!$obj4) { $cls = ProfessorPeer::getOMClass(false); $obj4 = new $cls(); $obj4->hydrate($row, $startcol4); ProfessorPeer::addInstanceToPool($obj4, $key4); } // if $obj4 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj4 (Professor) $obj4->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Periodo rows $key5 = PeriodoPeer::getPrimaryKeyHashFromRow($row, $startcol5); if ($key5 !== null) { $obj5 = PeriodoPeer::getInstanceFromPool($key5); if (!$obj5) { $cls = PeriodoPeer::getOMClass(false); $obj5 = new $cls(); $obj5->hydrate($row, $startcol5); PeriodoPeer::addInstanceToPool($obj5, $key5); } // if $obj5 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj5 (Periodo) $obj5->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Local rows $key6 = LocalPeer::getPrimaryKeyHashFromRow($row, $startcol6); if ($key6 !== null) { $obj6 = LocalPeer::getInstanceFromPool($key6); if (!$obj6) { $cls = LocalPeer::getOMClass(false); $obj6 = new $cls(); $obj6->hydrate($row, $startcol6); LocalPeer::addInstanceToPool($obj6, $key6); } // if $obj6 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj6 (Local) $obj6->addGradeunit($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }