/** * Selects a collection of Exam objects pre-filled with all related objects except EnumItem. * * @param Criteria $c * @param PropelPDO $con * @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN * @return array Array of Exam objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptEnumItem(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $c = clone $c; // Set the correct dbName if it has not been overridden // $c->getDbName() will return the same object if not set to another value // so == check is okay and faster if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ExamPeer::addSelectColumns($c); $startcol2 = ExamPeer::NUM_COLUMNS - ExamPeer::NUM_LAZY_LOAD_COLUMNS; CoursePeer::addSelectColumns($c); $startcol3 = $startcol2 + (CoursePeer::NUM_COLUMNS - CoursePeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(ExamPeer::COURSE_ID), array(CoursePeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ExamPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ExamPeer::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 { $omClass = ExamPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); ExamPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Course rows $key2 = CoursePeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = CoursePeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = CoursePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); CoursePeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (Exam) to the collection in $obj2 (Course) $obj2->addExam($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * Selects a collection of ExamComment objects pre-filled with all related objects. * * @param Criteria $c * @param PropelPDO $con * @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN * @return array Array of ExamComment objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { foreach (sfMixer::getCallables('BaseExamCommentPeer:doSelectJoinAll:doSelectJoinAll') as $callable) { call_user_func($callable, 'BaseExamCommentPeer', $c, $con); } $c = clone $c; // Set the correct dbName if it has not been overridden if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ExamCommentPeer::addSelectColumns($c); $startcol2 = ExamCommentPeer::NUM_COLUMNS - ExamCommentPeer::NUM_LAZY_LOAD_COLUMNS; ExamPeer::addSelectColumns($c); $startcol3 = $startcol2 + (ExamPeer::NUM_COLUMNS - ExamPeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(ExamCommentPeer::EXAM_ID), array(ExamPeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ExamCommentPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ExamCommentPeer::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 { $omClass = ExamCommentPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); ExamCommentPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Exam rows $key2 = ExamPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ExamPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = ExamPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ExamPeer::addInstanceToPool($obj2, $key2); } // if obj2 loaded // Add the $obj1 (ExamComment) to the collection in $obj2 (Exam) $obj2->addExamComment($obj1); } // if joined row not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }