/** * Selects a collection of User objects pre-filled with all related objects except Employee. * * @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 User objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptEmployee(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); } UserPeer::addSelectColumns($c); $startcol2 = UserPeer::NUM_COLUMNS - UserPeer::NUM_LAZY_LOAD_COLUMNS; RolePeer::addSelectColumns($c); $startcol3 = $startcol2 + (RolePeer::NUM_COLUMNS - RolePeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(UserPeer::ROLE_ID), array(RolePeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = UserPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = UserPeer::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 = UserPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); UserPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Role rows $key2 = RolePeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = RolePeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = RolePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); RolePeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (User) to the collection in $obj2 (Role) $obj2->addUser($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * 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 = RolePeer::getOMClass(); $cls = substr('.' . $cls, strrpos('.' . $cls, '.') + 1); // populate the object(s) while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key = RolePeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj = RolePeer::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; RolePeer::addInstanceToPool($obj, $key); } // if key exists } $stmt->closeCursor(); return $results; }
/** * Selects a collection of Role objects pre-filled with all related objects except UserRelatedByUpdatedBy. * * @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 Role objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptUserRelatedByUpdatedBy(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(RolePeer::DATABASE_NAME); } RolePeer::addSelectColumns($criteria); $startcol2 = RolePeer::NUM_HYDRATE_COLUMNS; $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = RolePeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = RolePeer::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 = RolePeer::getOMClass(); $obj1 = new $cls(); $obj1->hydrate($row); RolePeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public static function doSelectJoinAllExceptUser(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } UserrolePeer::addSelectColumns($c); $startcol2 = UserrolePeer::NUM_COLUMNS - UserrolePeer::NUM_LAZY_LOAD_COLUMNS + 1; RolePeer::addSelectColumns($c); $startcol3 = $startcol2 + RolePeer::NUM_COLUMNS; $c->addJoin(UserrolePeer::ROLE_ID, RolePeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = UserrolePeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = RolePeer::getOMClass(); $cls = Propel::import($omClass); $obj2 = new $cls(); $obj2->hydrate($rs, $startcol2); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj2 = $temp_obj1->getRole(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addUserrole($obj1); break; } } if ($newObject) { $obj2->initUserroles(); $obj2->addUserrole($obj1); } $results[] = $obj1; } return $results; }
/** * Selects a collection of GroupRole objects pre-filled with all related objects except UserRelatedByUpdatedBy. * * @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 GroupRole objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptUserRelatedByUpdatedBy(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(GroupRolePeer::DATABASE_NAME); } GroupRolePeer::addSelectColumns($criteria); $startcol2 = GroupRolePeer::NUM_HYDRATE_COLUMNS; GroupPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + GroupPeer::NUM_HYDRATE_COLUMNS; RolePeer::addSelectColumns($criteria); $startcol4 = $startcol3 + RolePeer::NUM_HYDRATE_COLUMNS; $criteria->addJoin(GroupRolePeer::GROUP_ID, GroupPeer::ID, $join_behavior); $criteria->addJoin(GroupRolePeer::ROLE_KEY, RolePeer::ROLE_KEY, $join_behavior); $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = GroupRolePeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = GroupRolePeer::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 = GroupRolePeer::getOMClass(); $obj1 = new $cls(); $obj1->hydrate($row); GroupRolePeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Group rows $key2 = GroupPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = GroupPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = GroupPeer::getOMClass(); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); GroupPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (GroupRole) to the collection in $obj2 (Group) $obj2->addGroupRole($obj1); } // if joined row is not null // Add objects for joined Role rows $key3 = RolePeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = RolePeer::getInstanceFromPool($key3); if (!$obj3) { $cls = RolePeer::getOMClass(); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); RolePeer::addInstanceToPool($obj3, $key3); } // if $obj3 already loaded // Add the $obj1 (GroupRole) to the collection in $obj3 (Role) $obj3->addGroupRole($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public static function populateObjects(ResultSet $rs) { $results = array(); $cls = RolePeer::getOMClass(); $cls = Propel::import($cls); while ($rs->next()) { $obj = new $cls(); $obj->hydrate($rs); $results[] = $obj; } return $results; }
/** * Selects a collection of TeamNote 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 TeamNote 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('BaseTeamNotePeer:doSelectJoinAll:doSelectJoinAll') as $callable) { call_user_func($callable, 'BaseTeamNotePeer', $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); } TeamNotePeer::addSelectColumns($c); $startcol2 = TeamNotePeer::NUM_COLUMNS - TeamNotePeer::NUM_LAZY_LOAD_COLUMNS; RolePeer::addSelectColumns($c); $startcol3 = $startcol2 + (RolePeer::NUM_COLUMNS - RolePeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(TeamNotePeer::ROLE_ID), array(RolePeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = TeamNotePeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = TeamNotePeer::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 = TeamNotePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); TeamNotePeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Role rows $key2 = RolePeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = RolePeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = RolePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); RolePeer::addInstanceToPool($obj2, $key2); } // if obj2 loaded // Add the $obj1 (TeamNote) to the collection in $obj2 (Role) $obj1->setRole($obj2); } // if joined row not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }