public static function doSelectJoinAllExceptCur13TermSpec(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } Cur13GradePeer::addSelectColumns($c); $startcol2 = Cur13GradePeer::NUM_COLUMNS - Cur13GradePeer::NUM_LAZY_LOAD_COLUMNS + 1; StudentAccalPeer::addSelectColumns($c); $startcol3 = $startcol2 + StudentAccalPeer::NUM_COLUMNS; $c->addJoin(Cur13GradePeer::STUDENT_ACCAL_ID, StudentAccalPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = Cur13GradePeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = StudentAccalPeer::getOMClass(); $cls = Propel::import($omClass); $obj2 = new $cls(); $obj2->hydrate($rs, $startcol2); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj2 = $temp_obj1->getStudentAccal(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addCur13Grade($obj1); break; } } if ($newObject) { $obj2->initCur13Grades(); $obj2->addCur13Grade($obj1); } $results[] = $obj1; } return $results; }
public function getCur13Grades($criteria = null, $con = null) { include_once 'lib/model/om/BaseCur13GradePeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collCur13Grades === null) { if ($this->isNew()) { $this->collCur13Grades = array(); } else { $criteria->add(Cur13GradePeer::CUR13_TERM_SPEC_ID, $this->getId()); Cur13GradePeer::addSelectColumns($criteria); $this->collCur13Grades = Cur13GradePeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(Cur13GradePeer::CUR13_TERM_SPEC_ID, $this->getId()); Cur13GradePeer::addSelectColumns($criteria); if (!isset($this->lastCur13GradeCriteria) || !$this->lastCur13GradeCriteria->equals($criteria)) { $this->collCur13Grades = Cur13GradePeer::doSelect($criteria, $con); } } } $this->lastCur13GradeCriteria = $criteria; return $this->collCur13Grades; }