/** * Retrieve object using using composite pkey values. * @param int $id * @param string $ine * @param int $num_periode * @param string $special * @param PropelPDO $con * @return ArchiveEcts */ public static function retrieveByPK($id, $ine, $num_periode, $special, PropelPDO $con = null) { $_instancePoolKey = serialize(array((string) $id, (string) $ine, (string) $num_periode, (string) $special)); if (null !== ($obj = ArchiveEctsPeer::getInstanceFromPool($_instancePoolKey))) { return $obj; } if ($con === null) { $con = Propel::getConnection(ArchiveEctsPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $criteria = new Criteria(ArchiveEctsPeer::DATABASE_NAME); $criteria->add(ArchiveEctsPeer::ID, $id); $criteria->add(ArchiveEctsPeer::INE, $ine); $criteria->add(ArchiveEctsPeer::NUM_PERIODE, $num_periode); $criteria->add(ArchiveEctsPeer::SPECIAL, $special); $v = ArchiveEctsPeer::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, 56, 78), $con); * </code> * * @param array[$id, $ine, $num_periode, $special] $key Primary key to use for the query * @param PropelPDO $con an optional connection object * * @return ArchiveEcts|array|mixed the result, formatted by the current formatter */ public function findPk($key, $con = null) { if ($key === null) { return null; } if ((null !== ($obj = ArchiveEctsPeer::getInstanceFromPool(serialize(array((string) $key[0], (string) $key[1], (string) $key[2], (string) $key[3]))))) && !$this->formatter) { // the object is alredy in the instance pool return $obj; } if ($con === null) { $con = Propel::getConnection(ArchiveEctsPeer::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); } }