Example #1
0
 public static function doSelectJoinAllExceptActividad(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ExamenPeer::addSelectColumns($c);
     $startcol2 = ExamenPeer::NUM_COLUMNS - ExamenPeer::NUM_LAZY_LOAD_COLUMNS;
     EscalanotaPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (EscalanotaPeer::NUM_COLUMNS - EscalanotaPeer::NUM_LAZY_LOAD_COLUMNS);
     AlumnoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (AlumnoPeer::NUM_COLUMNS - AlumnoPeer::NUM_LAZY_LOAD_COLUMNS);
     PeriodoPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(ExamenPeer::FK_ESCALANOTA_ID), array(EscalanotaPeer::ID), $join_behavior);
     $c->addJoin(array(ExamenPeer::FK_ALUMNO_ID), array(AlumnoPeer::ID), $join_behavior);
     $c->addJoin(array(ExamenPeer::FK_PERIODO_ID), array(PeriodoPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ExamenPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ExamenPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = ExamenPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ExamenPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = EscalanotaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = EscalanotaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = EscalanotaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 EscalanotaPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addExamen($obj1);
         }
         $key3 = AlumnoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = AlumnoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = AlumnoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 AlumnoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addExamen($obj1);
         }
         $key4 = PeriodoPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = PeriodoPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = PeriodoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 PeriodoPeer::addInstanceToPool($obj4, $key4);
             }
             $obj4->addExamen($obj1);
         }
         $results[] = $obj1;
     }
     $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;
 }
Example #3
0
 public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     PeriodoPeer::addSelectColumns($c);
     $startcol2 = PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS;
     CiclolectivoPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (CiclolectivoPeer::NUM_COLUMNS - CiclolectivoPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(PeriodoPeer::FK_CICLOLECTIVO_ID), array(CiclolectivoPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = PeriodoPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = PeriodoPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = PeriodoPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             PeriodoPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = CiclolectivoPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = CiclolectivoPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = CiclolectivoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 CiclolectivoPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addPeriodo($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Example #4
0
 /**
  * Selects a collection of Periodo 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 Periodo 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);
     }
     PeriodoPeer::addSelectColumns($criteria);
     $startcol2 = PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS;
     GradePeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (GradePeer::NUM_COLUMNS - GradePeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(PeriodoPeer::GRADE_ID, GradePeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BasePeriodoPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = PeriodoPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = PeriodoPeer::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 = PeriodoPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             PeriodoPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Grade rows
         $key2 = GradePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = GradePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = GradePeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 GradePeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (Periodo) to the collection in $obj2 (Grade)
             $obj2->addPeriodo($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }