/** * Retrieve a single object by pkey. * * @param int $pk the primary key. * @param PropelPDO $con the connection to use * @return BatchJobLog */ public static function retrieveByPK($pk, PropelPDO $con = null) { if (null !== ($obj = BatchJobLogPeer::getInstanceFromPool((string) $pk))) { return $obj; } $criteria = new Criteria(BatchJobLogPeer::DATABASE_NAME); $criteria->add(BatchJobLogPeer::ID, $pk); $v = BatchJobLogPeer::doSelect($criteria, $con); return !empty($v) > 0 ? $v[0] : null; }