Exemple #1
0
 /**
  * Gets an array of Modele objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this Marque has previously been saved, it will retrieve
  * related Modeles from storage. If this Marque is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array Modele[]
  * @throws     PropelException
  */
 public function getModeles($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(MarquePeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collModeles === null) {
         if ($this->isNew()) {
             $this->collModeles = array();
         } else {
             $criteria->add(ModelePeer::MARQUE_ID, $this->id);
             ModelePeer::addSelectColumns($criteria);
             $this->collModeles = ModelePeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(ModelePeer::MARQUE_ID, $this->id);
             ModelePeer::addSelectColumns($criteria);
             if (!isset($this->lastModeleCriteria) || !$this->lastModeleCriteria->equals($criteria)) {
                 $this->collModeles = ModelePeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastModeleCriteria = $criteria;
     return $this->collModeles;
 }
 /**
  * Selects a collection of Vehicule objects pre-filled with all related objects except Proprietaire.
  *
  * @param      Criteria  $c
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Vehicule objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptProprietaire(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     // $c->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     VehiculePeer::addSelectColumns($c);
     $startcol2 = VehiculePeer::NUM_COLUMNS - VehiculePeer::NUM_LAZY_LOAD_COLUMNS;
     ModelePeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (ModelePeer::NUM_COLUMNS - ModelePeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(VehiculePeer::MODELE_ID), array(ModelePeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = VehiculePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = VehiculePeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $omClass = VehiculePeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             VehiculePeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Modele rows
         $key2 = ModelePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = ModelePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = ModelePeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 ModelePeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Vehicule) to the collection in $obj2 (Modele)
             $obj2->addVehicule($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Exemple #3
0
 /**
  * Selects a collection of Modele objects pre-filled with all related objects.
  *
  * @param      Criteria  $c
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Modele objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     foreach (sfMixer::getCallables('BaseModelePeer:doSelectJoinAll:doSelectJoinAll') as $callable) {
         call_user_func($callable, 'BaseModelePeer', $c, $con);
     }
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ModelePeer::addSelectColumns($c);
     $startcol2 = ModelePeer::NUM_COLUMNS - ModelePeer::NUM_LAZY_LOAD_COLUMNS;
     MarquePeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (MarquePeer::NUM_COLUMNS - MarquePeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(ModelePeer::MARQUE_ID), array(MarquePeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ModelePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ModelePeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $omClass = ModelePeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ModelePeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Marque rows
         $key2 = MarquePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MarquePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = MarquePeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MarquePeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (Modele) to the collection in $obj2 (Marque)
             $obj2->addModele($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }