/**
  * Selects a collection of AreaAssignment objects pre-filled with all related objects except User.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return array           Array of AreaAssignment objects.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptUser(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(AreaAssignmentPeer::DATABASE_NAME);
     }
     AreaAssignmentPeer::addSelectColumns($criteria);
     $startcol2 = AreaAssignmentPeer::NUM_HYDRATE_COLUMNS;
     AreaPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + AreaPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(AreaAssignmentPeer::AREA_ID, AreaPeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = AreaAssignmentPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = AreaAssignmentPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = AreaAssignmentPeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             AreaAssignmentPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Area rows
         $key2 = AreaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = AreaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = AreaPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 AreaPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (AreaAssignment) to the collection in $obj2 (Area)
             $obj2->addAreaAssignment($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Example #2
0
 /**
  * Selects a collection of Store objects pre-filled with all related objects except City.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return array           Array of Store objects.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptCity(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(StorePeer::DATABASE_NAME);
     }
     StorePeer::addSelectColumns($criteria);
     $startcol2 = StorePeer::NUM_HYDRATE_COLUMNS;
     CountryPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + CountryPeer::NUM_HYDRATE_COLUMNS;
     StatePeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + StatePeer::NUM_HYDRATE_COLUMNS;
     RegionPeer::addSelectColumns($criteria);
     $startcol5 = $startcol4 + RegionPeer::NUM_HYDRATE_COLUMNS;
     AreaPeer::addSelectColumns($criteria);
     $startcol6 = $startcol5 + AreaPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(StorePeer::COUNTRY_ID, CountryPeer::ID, $join_behavior);
     $criteria->addJoin(StorePeer::STATE_ID, StatePeer::ID, $join_behavior);
     $criteria->addJoin(StorePeer::REGION_ID, RegionPeer::ID, $join_behavior);
     $criteria->addJoin(StorePeer::AREA_ID, AreaPeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = StorePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = StorePeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = StorePeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             StorePeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Country rows
         $key2 = CountryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = CountryPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = CountryPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 CountryPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Store) to the collection in $obj2 (Country)
             $obj2->addStore($obj1);
         }
         // if joined row is not null
         // Add objects for joined State rows
         $key3 = StatePeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = StatePeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = StatePeer::getOMClass();
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 StatePeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Store) to the collection in $obj3 (State)
             $obj3->addStore($obj1);
         }
         // if joined row is not null
         // Add objects for joined Region rows
         $key4 = RegionPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = RegionPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $cls = RegionPeer::getOMClass();
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 RegionPeer::addInstanceToPool($obj4, $key4);
             }
             // if $obj4 already loaded
             // Add the $obj1 (Store) to the collection in $obj4 (Region)
             $obj4->addStore($obj1);
         }
         // if joined row is not null
         // Add objects for joined Area rows
         $key5 = AreaPeer::getPrimaryKeyHashFromRow($row, $startcol5);
         if ($key5 !== null) {
             $obj5 = AreaPeer::getInstanceFromPool($key5);
             if (!$obj5) {
                 $cls = AreaPeer::getOMClass();
                 $obj5 = new $cls();
                 $obj5->hydrate($row, $startcol5);
                 AreaPeer::addInstanceToPool($obj5, $key5);
             }
             // if $obj5 already loaded
             // Add the $obj1 (Store) to the collection in $obj5 (Area)
             $obj5->addStore($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Example #3
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
  * @throws Exception
  * @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(AreaPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     $isInsert = $this->isNew();
     try {
         $ret = $this->preSave($con);
         // event behavior
         EventDispatcherProxy::trigger('model.save.pre', new ModelEvent($this));
         if ($isInsert) {
             $ret = $ret && $this->preInsert($con);
             // event behavior
             EventDispatcherProxy::trigger('model.insert.pre', new ModelEvent($this));
         } else {
             $ret = $ret && $this->preUpdate($con);
             // event behavior
             EventDispatcherProxy::trigger(array('update.pre', 'model.update.pre'), new ModelEvent($this));
         }
         if ($ret) {
             $affectedRows = $this->doSave($con);
             if ($isInsert) {
                 $this->postInsert($con);
                 // event behavior
                 EventDispatcherProxy::trigger('model.insert.post', new ModelEvent($this));
             } else {
                 $this->postUpdate($con);
                 // event behavior
                 EventDispatcherProxy::trigger(array('update.post', 'model.update.post'), new ModelEvent($this));
             }
             $this->postSave($con);
             // event behavior
             EventDispatcherProxy::trigger('model.save.post', new ModelEvent($this));
             AreaPeer::addInstanceToPool($this);
         } else {
             $affectedRows = 0;
         }
         $con->commit();
         return $affectedRows;
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }