示例#1
0
 /**
  * Find object by primary key using raw SQL to go fast.
  * Bypass doSelect() and the object formatter by using generated code.
  *
  * @param     mixed $key Primary key to use for the query
  * @param     PropelPDO $con A connection object
  *
  * @return                 Site A model object, or null if the key is not found
  * @throws PropelException
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `id`, `meta_key`, `meta_value`, `created_at`, `updated_at` FROM `site` WHERE `id` = :p0';
     try {
         $stmt = $con->prepare($sql);
         $stmt->bindValue(':p0', $key, PDO::PARAM_INT);
         $stmt->execute();
     } catch (Exception $e) {
         Propel::log($e->getMessage(), Propel::LOG_ERR);
         throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
     }
     $obj = null;
     if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $cls = SitePeer::getOMClass();
         $obj = new $cls();
         $obj->hydrate($row);
         SitePeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }
示例#2
0
 /**
  * Populates an object of the default type or an object that inherit from the default.
  *
  * @param      array $row PropelPDO resultset row.
  * @param      int $startcol The 0-based offset for reading from the resultset row.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  * @return array (Site object, last column rank)
  */
 public static function populateObject($row, $startcol = 0)
 {
     $key = SitePeer::getPrimaryKeyHashFromRow($row, $startcol);
     if (null !== ($obj = SitePeer::getInstanceFromPool($key))) {
         // We no longer rehydrate the object, since this can cause data loss.
         // See http://www.propelorm.org/ticket/509
         // $obj->hydrate($row, $startcol, true); // rehydrate
         $col = $startcol + SitePeer::NUM_HYDRATE_COLUMNS;
     } else {
         $cls = SitePeer::getOMClass($row, $startcol);
         $obj = new $cls();
         $col = $obj->hydrate($row, $startcol);
         SitePeer::addInstanceToPool($obj, $key);
     }
     return array($obj, $col);
 }