public static function getCourseDataArrayForCourseAndInstructorAndYear($courseId, $instructorId, $year, PropelPDO $propelConnection)
 {
     $c = new Criteria();
     $c->addJoin(AutoCourseRatingPeer::COURSE_INS_ID, CourseInstructorAssociationPeer::ID);
     $crit1 = $c->getNewCriterion(CourseInstructorAssociationPeer::COURSE_ID, $courseId);
     $crit2 = $c->getNewCriterion(CourseInstructorAssociationPeer::YEAR, $year);
     $crit3 = $c->getNewCriterion(CourseInstructorAssociationPeer::INSTRUCTOR_ID, $instructorId);
     $c->addAnd($crit1);
     $c->addAnd($crit2);
     $c->addAnd($crit3);
     $c->addAscendingOrderByColumn(AutoCourseRatingPeer::FIELD_ID);
     $c->addAscendingOrderByColumn(AutoCourseRatingPeer::ID);
     $c->addAscendingOrderByColumn(AutoCourseRatingPeer::RATING);
     return AutoCourseRatingPeer::doSelect($c, $propelConnection);
 }
Beispiel #2
0
 /**
  * Gets an array of AutoCourseRating objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this RatingField has previously been saved, it will retrieve
  * related AutoCourseRatings from storage. If this RatingField is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array AutoCourseRating[]
  * @throws     PropelException
  */
 public function getAutoCourseRatings($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(RatingFieldPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collAutoCourseRatings === null) {
         if ($this->isNew()) {
             $this->collAutoCourseRatings = array();
         } else {
             $criteria->add(AutoCourseRatingPeer::FIELD_ID, $this->id);
             AutoCourseRatingPeer::addSelectColumns($criteria);
             $this->collAutoCourseRatings = AutoCourseRatingPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(AutoCourseRatingPeer::FIELD_ID, $this->id);
             AutoCourseRatingPeer::addSelectColumns($criteria);
             if (!isset($this->lastAutoCourseRatingCriteria) || !$this->lastAutoCourseRatingCriteria->equals($criteria)) {
                 $this->collAutoCourseRatings = AutoCourseRatingPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastAutoCourseRatingCriteria = $criteria;
     return $this->collAutoCourseRatings;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(AutoCourseRatingPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AutoCourseRatingPeer::DATABASE_NAME);
         $criteria->add(AutoCourseRatingPeer::ID, $pks, Criteria::IN);
         $objs = AutoCourseRatingPeer::doSelect($criteria, $con);
     }
     return $objs;
 }