示例#1
0
 public static function retrievByKshowId($kshow_id, $join_all = false)
 {
     $c = new Criteria();
     //		myCriteria::addComment( $c , __METHOD__ );
     $c->addAnd(roughcutEntryPeer::ROUGHCUT_KSHOW_ID, $kshow_id);
     $c->addAscendingOrderByColumn(roughcutEntryPeer::ID);
     if ($join_all) {
         return roughcutEntryPeer::doSelectJoinAll($c);
     } else {
         return roughcutEntryPeer::doSelect($c);
     }
 }
示例#2
0
文件: Basekshow.php 项目: wzur/server
 /**
  * Gets an array of roughcutEntry 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 kshow has previously been saved, it will retrieve
  * related roughcutEntrys from storage. If this kshow 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 roughcutEntry[]
  * @throws     PropelException
  */
 public function getroughcutEntrys($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(kshowPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collroughcutEntrys === null) {
         if ($this->isNew()) {
             $this->collroughcutEntrys = array();
         } else {
             $criteria->add(roughcutEntryPeer::ROUGHCUT_KSHOW_ID, $this->id);
             roughcutEntryPeer::addSelectColumns($criteria);
             $this->collroughcutEntrys = roughcutEntryPeer::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(roughcutEntryPeer::ROUGHCUT_KSHOW_ID, $this->id);
             roughcutEntryPeer::addSelectColumns($criteria);
             if (!isset($this->lastroughcutEntryCriteria) || !$this->lastroughcutEntryCriteria->equals($criteria)) {
                 $this->collroughcutEntrys = roughcutEntryPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastroughcutEntryCriteria = $criteria;
     return $this->collroughcutEntrys;
 }
示例#3
0
 /**
  * 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)
 {
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(roughcutEntryPeer::DATABASE_NAME);
         $criteria->add(roughcutEntryPeer::ID, $pks, Criteria::IN);
         $objs = roughcutEntryPeer::doSelect($criteria, $con);
     }
     return $objs;
 }