示例#1
0
 /**
  * The returned array will contain objects of the default type or
  * objects that inherit from the default.
  *
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function populateObjects(PDOStatement $stmt)
 {
     $results = array();
     // set the class once to avoid overhead in the loop
     $cls = FlatPagePeer::getOMClass(false);
     // populate the object(s)
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key = FlatPagePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj = FlatPagePeer::getInstanceFromPool($key))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj->hydrate($row, 0, true); // rehydrate
             $results[] = $obj;
         } else {
             $obj = new $cls();
             $obj->hydrate($row);
             $results[] = $obj;
             FlatPagePeer::addInstanceToPool($obj, $key);
         }
         // if key exists
     }
     $stmt->closeCursor();
     return $results;
 }
示例#2
0
 /**
  * Persists this object to the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All modified related objects will also be persisted in the doSave()
  * method.  This method wraps all precipitate database operations in a
  * single transaction.
  *
  * @param      PropelPDO $con
  * @return     int The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws     PropelException
  * @see        doSave()
  */
 public function save(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("You cannot save an object that has been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(FlatPagePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     $isInsert = $this->isNew();
     try {
         $ret = $this->preSave($con);
         // symfony_behaviors behavior
         foreach (sfMixer::getCallables('BaseFlatPage:save:pre') as $callable) {
             if (is_integer($affectedRows = call_user_func($callable, $this, $con))) {
                 return $affectedRows;
             }
         }
         if ($isInsert) {
             $ret = $ret && $this->preInsert($con);
         } else {
             $ret = $ret && $this->preUpdate($con);
         }
         if ($ret) {
             $affectedRows = $this->doSave($con);
             if ($isInsert) {
                 $this->postInsert($con);
             } else {
                 $this->postUpdate($con);
             }
             $this->postSave($con);
             // symfony_behaviors behavior
             foreach (sfMixer::getCallables('BaseFlatPage:save:post') as $callable) {
                 call_user_func($callable, $this, $con, $affectedRows);
             }
             $con->commit();
             FlatPagePeer::addInstanceToPool($this);
             return $affectedRows;
         }
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
 }