コード例 #1
0
 public static function doSelectJoinAllExceptRegion(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     StudentParentsPeer::addSelectColumns($c);
     $startcol2 = StudentParentsPeer::NUM_COLUMNS - StudentParentsPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     StudentPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + StudentPeer::NUM_COLUMNS;
     ReligionPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + ReligionPeer::NUM_COLUMNS;
     CountryPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + CountryPeer::NUM_COLUMNS;
     CountryPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + CountryPeer::NUM_COLUMNS;
     DegreePeer::addSelectColumns($c);
     $startcol7 = $startcol6 + DegreePeer::NUM_COLUMNS;
     $c->addJoin(StudentParentsPeer::STUDENT_ID, StudentPeer::ID);
     $c->addJoin(StudentParentsPeer::RELIGION_ID, ReligionPeer::ID);
     $c->addJoin(StudentParentsPeer::COUNTRY_ID, CountryPeer::ID);
     $c->addJoin(StudentParentsPeer::NATIONALITY, CountryPeer::ID);
     $c->addJoin(StudentParentsPeer::DEGREE_ID, DegreePeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = StudentParentsPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = StudentPeer::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->getStudent();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addStudentParents($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initStudentParentss();
             $obj2->addStudentParents($obj1);
         }
         $omClass = ReligionPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj3 = new $cls();
         $obj3->hydrate($rs, $startcol3);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj3 = $temp_obj1->getReligion();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addStudentParents($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initStudentParentss();
             $obj3->addStudentParents($obj1);
         }
         $omClass = CountryPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj4 = new $cls();
         $obj4->hydrate($rs, $startcol4);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj4 = $temp_obj1->getCountryRelatedByCountryId();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addStudentParentsRelatedByCountryId($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initStudentParentssRelatedByCountryId();
             $obj4->addStudentParentsRelatedByCountryId($obj1);
         }
         $omClass = CountryPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj5 = new $cls();
         $obj5->hydrate($rs, $startcol5);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj5 = $temp_obj1->getCountryRelatedByNationality();
             if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj5->addStudentParentsRelatedByNationality($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj5->initStudentParentssRelatedByNationality();
             $obj5->addStudentParentsRelatedByNationality($obj1);
         }
         $omClass = DegreePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj6 = new $cls();
         $obj6->hydrate($rs, $startcol6);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj6 = $temp_obj1->getDegree();
             if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj6->addStudentParents($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj6->initStudentParentss();
             $obj6->addStudentParents($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }