/** * Retrieve a single object by pkey. * * @param int $pk the primary key. * @param PropelPDO $con the connection to use * @return GradebookEvaluation */ public static function retrieveByPK($pk, PropelPDO $con = null) { if (null !== ($obj = GradebookEvaluationPeer::getInstanceFromPool((string) $pk))) { return $obj; } if ($con === null) { $con = Propel::getConnection(GradebookEvaluationPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $criteria = new Criteria(GradebookEvaluationPeer::DATABASE_NAME); $criteria->add(GradebookEvaluationPeer::ID, $pk); $v = GradebookEvaluationPeer::doSelect($criteria, $con); return !empty($v) > 0 ? $v[0] : null; }
/** * Find object by primary key * Use instance pooling to avoid a database query if the object exists * <code> * $obj = $c->findPk(12, $con); * </code> * @param mixed $key Primary key to use for the query * @param PropelPDO $con an optional connection object * * @return GradebookEvaluation|array|mixed the result, formatted by the current formatter */ public function findPk($key, $con = null) { if (null !== ($obj = GradebookEvaluationPeer::getInstanceFromPool((string) $key)) && $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); } }