Exemple #1
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;
 }
 /**
  * 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;
 }
Exemple #3
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @return Area[]
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AreaPeer::DATABASE_NAME);
         $criteria->add(AreaPeer::ID, $pks, Criteria::IN);
         $objs = AreaPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Exemple #4
0
 /**
  * Method to invalidate the instance pool of all tables related to state
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // Invalidate objects in CityPeer instance pool,
     // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
     CityPeer::clearInstancePool();
     // Invalidate objects in AreaPeer instance pool,
     // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
     AreaPeer::clearInstancePool();
     // Invalidate objects in PrincipalPeer instance pool,
     // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
     PrincipalPeer::clearInstancePool();
     // Invalidate objects in StorePeer instance pool,
     // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
     StorePeer::clearInstancePool();
 }
Exemple #5
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's BasePeer::TYPE_PHPNAME
  *
  * @param array  $arr     An array to populate the object from.
  * @param string $keyType The type of keys the array uses.
  * @return void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = AreaPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setCode($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setZipCode($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setName($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setStateId($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setCityId($arr[$keys[5]]);
     }
 }