/** * 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[$group_id, $permission_id] $key Primary key to use for the query * @param PropelPDO $con an optional connection object * * @return sfGuardGroupPermission|array|mixed the result, formatted by the current formatter */ public function findPk($key, $con = null) { if ($key === null) { return null; } if (null !== ($obj = sfGuardGroupPermissionPeer::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(sfGuardGroupPermissionPeer::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); } }
/** * Retrieve object using using composite pkey values. * @param int $group_id * @param int $permission_id * @param PropelPDO $con * @return sfGuardGroupPermission */ public static function retrieveByPK($group_id, $permission_id, PropelPDO $con = null) { $key = serialize(array((string) $group_id, (string) $permission_id)); if (null !== ($obj = sfGuardGroupPermissionPeer::getInstanceFromPool($key))) { return $obj; } if ($con === null) { $con = Propel::getConnection(sfGuardGroupPermissionPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $criteria = new Criteria(sfGuardGroupPermissionPeer::DATABASE_NAME); $criteria->add(sfGuardGroupPermissionPeer::GROUP_ID, $group_id); $criteria->add(sfGuardGroupPermissionPeer::PERMISSION_ID, $permission_id); $v = sfGuardGroupPermissionPeer::doSelect($criteria, $con); return !empty($v) ? $v[0] : null; }
/** * Find object by primary key * <code> * $obj = $c->findPk(array(12, 34), $con); * </code> * @param array[$group_id, $permission_id] $key Primary key to use for the query * @param PropelPDO $con an optional connection object * * @return sfGuardGroupPermission|array|mixed the result, formatted by the current formatter */ public function findPk($key, $con = null) { if (null !== ($obj = sfGuardGroupPermissionPeer::getInstanceFromPool(serialize(array((string) $key[0], (string) $key[1])))) && $this->getFormatter()->isObjectFormatter()) { // the object is alredy in the instance pool return $obj; } else { // the object has not been requested yet, or the formatter is not an object formatter $criteria = $this->isKeepQuery() ? clone $this : $this; $stmt = $criteria->filterByPrimaryKey($key)->getSelectStatement($con); return $criteria->getFormatter()->init($criteria)->formatOne($stmt); } }