Beispiel #1
0
 /**
  * Retrieve object using using composite pkey values.
  * @param   int $holiday_id
  * @param   int $domain_id
  * @param      PropelPDO $con
  * @return   HolidayDomain
  */
 public static function retrieveByPK($holiday_id, $domain_id, PropelPDO $con = null)
 {
     $_instancePoolKey = serialize(array((string) $holiday_id, (string) $domain_id));
     if (null !== ($obj = HolidayDomainPeer::getInstanceFromPool($_instancePoolKey))) {
         return $obj;
     }
     if ($con === null) {
         $con = Propel::getConnection(HolidayDomainPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $criteria = new Criteria(HolidayDomainPeer::DATABASE_NAME);
     $criteria->add(HolidayDomainPeer::HOLIDAY_ID, $holiday_id);
     $criteria->add(HolidayDomainPeer::DOMAIN_ID, $domain_id);
     $v = HolidayDomainPeer::doSelect($criteria, $con);
     return !empty($v) ? $v[0] : null;
 }
 /**
 * Find object by primary key.
 * Propel uses the instance pool to skip the database if the object exists.
 * Go fast if the query is untouched.
 *
 * <code>
 * $obj = $c->findPk(array(12, 34), $con);
 * </code>
 *
 * @param array $key Primary key to use for the query
                     A Primary key composition: [$holiday_id, $domain_id]
 * @param     PropelPDO $con an optional connection object
 *
 * @return   HolidayDomain|HolidayDomain[]|mixed the result, formatted by the current formatter
 */
 public function findPk($key, $con = null)
 {
     if ($key === null) {
         return null;
     }
     if (null !== ($obj = HolidayDomainPeer::getInstanceFromPool(serialize(array((string) $key[0], (string) $key[1])))) && !$this->formatter) {
         // the object is alredy in the instance pool
         return $obj;
     }
     if ($con === null) {
         $con = Propel::getConnection(HolidayDomainPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $this->basePreSelect($con);
     if ($this->formatter || $this->modelAlias || $this->with || $this->select || $this->selectColumns || $this->asColumns || $this->selectModifiers || $this->map || $this->having || $this->joins) {
         return $this->findPkComplex($key, $con);
     } else {
         return $this->findPkSimple($key, $con);
     }
 }