/**
  * Selects a collection of LeasingBookings objects pre-filled with all related objects except LeasingUnit.
  *
  * @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 LeasingBookings objects.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptLeasingUnit(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(LeasingBookingsPeer::DATABASE_NAME);
     }
     LeasingBookingsPeer::addSelectColumns($criteria);
     $startcol2 = LeasingBookingsPeer::NUM_HYDRATE_COLUMNS;
     LeasingBookingLeadsPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + LeasingBookingLeadsPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(LeasingBookingsPeer::BOOKING_LEADS_ID, LeasingBookingLeadsPeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = LeasingBookingsPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = LeasingBookingsPeer::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 = LeasingBookingsPeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             LeasingBookingsPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined LeasingBookingLeads rows
         $key2 = LeasingBookingLeadsPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = LeasingBookingLeadsPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = LeasingBookingLeadsPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 LeasingBookingLeadsPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (LeasingBookings) to the collection in $obj2 (LeasingBookingLeads)
             $obj2->addLeasingBookings($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @return LeasingBookingLeads[]
  * @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(LeasingBookingLeadsPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(LeasingBookingLeadsPeer::DATABASE_NAME);
         $criteria->add(LeasingBookingLeadsPeer::ID, $pks, Criteria::IN);
         $objs = LeasingBookingLeadsPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * 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                 LeasingBookingLeads A model object, or null if the key is not found
  * @throws PropelException
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `id`, `fname`, `lname`, `email`, `mobile`, `country_id`, `nationality_id`, `client_ip`, `client_id`, `campaign`, `medium`, `source`, `gacountry` FROM `booking_leads` 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)) {
         $obj = new LeasingBookingLeads();
         $obj->hydrate($row);
         LeasingBookingLeadsPeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }