示例#1
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *     rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(ApplicationPeer::APP_UID, $pks, Criteria::IN);
         $objs = ApplicationPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
示例#2
0
 /**
  * Gets an array of Application 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 VocationClass has previously been saved, it will retrieve
  * related Applications from storage. If this VocationClass 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 Application[]
  * @throws     PropelException
  */
 public function getApplications($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(VocationClassPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collApplications === null) {
         if ($this->isNew()) {
             $this->collApplications = array();
         } else {
             $criteria->add(ApplicationPeer::VOCATION_CLASS_ID, $this->id);
             ApplicationPeer::addSelectColumns($criteria);
             $this->collApplications = ApplicationPeer::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(ApplicationPeer::VOCATION_CLASS_ID, $this->id);
             ApplicationPeer::addSelectColumns($criteria);
             if (!isset($this->lastApplicationCriteria) || !$this->lastApplicationCriteria->equals($criteria)) {
                 $this->collApplications = ApplicationPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastApplicationCriteria = $criteria;
     return $this->collApplications;
 }