public static function doSelectJoinAllExceptMember(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     VStudentLoginPeer::addSelectColumns($c);
     $startcol2 = VStudentLoginPeer::NUM_COLUMNS - VStudentLoginPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     CurriculumPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + CurriculumPeer::NUM_COLUMNS;
     AcademicCalendarPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + AcademicCalendarPeer::NUM_COLUMNS;
     ClassGroupPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + ClassGroupPeer::NUM_COLUMNS;
     TestApplicantPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + TestApplicantPeer::NUM_COLUMNS;
     StudentDetailPeer::addSelectColumns($c);
     $startcol7 = $startcol6 + StudentDetailPeer::NUM_COLUMNS;
     $c->addJoin(VStudentLoginPeer::CURRICULUM_ID, CurriculumPeer::ID);
     $c->addJoin(VStudentLoginPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
     $c->addJoin(VStudentLoginPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
     $c->addJoin(VStudentLoginPeer::TEST_APPLICANT_ID, TestApplicantPeer::ID);
     $c->addJoin(VStudentLoginPeer::STUDENT_DETAIL_ID, StudentDetailPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = VStudentLoginPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = CurriculumPeer::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->getCurriculum();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addVStudentLogin($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initVStudentLogins();
             $obj2->addVStudentLogin($obj1);
         }
         $omClass = AcademicCalendarPeer::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->getAcademicCalendar();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addVStudentLogin($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initVStudentLogins();
             $obj3->addVStudentLogin($obj1);
         }
         $omClass = ClassGroupPeer::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->getClassGroup();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addVStudentLogin($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initVStudentLogins();
             $obj4->addVStudentLogin($obj1);
         }
         $omClass = TestApplicantPeer::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->getTestApplicant();
             if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj5->addVStudentLogin($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj5->initVStudentLogins();
             $obj5->addVStudentLogin($obj1);
         }
         $omClass = StudentDetailPeer::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->getStudentDetail();
             if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj6->addVStudentLogin($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj6->initVStudentLogins();
             $obj6->addVStudentLogin($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }