本文整理汇总了PHP中CategoryPeer::getInstanceFromPool方法的典型用法代码示例。如果您正苦于以下问题:PHP CategoryPeer::getInstanceFromPool方法的具体用法?PHP CategoryPeer::getInstanceFromPool怎么用?PHP CategoryPeer::getInstanceFromPool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CategoryPeer
的用法示例。
在下文中一共展示了CategoryPeer::getInstanceFromPool方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doSelectJoinAllExceptProduct
/**
* Selects a collection of CategoryHasProduct objects pre-filled with all related objects except Product.
*
* @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 CategoryHasProduct objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptProduct(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(self::DATABASE_NAME);
}
CategoryHasProductPeer::addSelectColumns($criteria);
$startcol2 = CategoryHasProductPeer::NUM_COLUMNS - CategoryHasProductPeer::NUM_LAZY_LOAD_COLUMNS;
CategoryPeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + (CategoryPeer::NUM_COLUMNS - CategoryPeer::NUM_LAZY_LOAD_COLUMNS);
$criteria->addJoin(CategoryHasProductPeer::CATEGORY_ID, CategoryPeer::ID, $join_behavior);
// symfony_behaviors behavior
foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
call_user_func($sf_hook, 'BaseCategoryHasProductPeer', $criteria, $con);
}
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = CategoryHasProductPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = CategoryHasProductPeer::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 {
$cls = CategoryHasProductPeer::getOMClass(false);
$obj1 = new $cls();
$obj1->hydrate($row);
CategoryHasProductPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Category rows
$key2 = CategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = CategoryPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = CategoryPeer::getOMClass(false);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
CategoryPeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (CategoryHasProduct) to the collection in $obj2 (Category)
$obj2->addCategoryHasProduct($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例2: doSelectJoinAll
/**
* Selects a collection of Product objects pre-filled with all related objects.
*
* @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 Product objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$criteria = clone $criteria;
// Set the correct dbName if it has not been overridden
if ($criteria->getDbName() == Propel::getDefaultDB()) {
$criteria->setDbName(ProductPeer::DATABASE_NAME);
}
ProductPeer::addSelectColumns($criteria);
$startcol2 = ProductPeer::NUM_HYDRATE_COLUMNS;
CategoryPeer::addSelectColumns($criteria);
$startcol3 = $startcol2 + CategoryPeer::NUM_HYDRATE_COLUMNS;
$criteria->addJoin(ProductPeer::CATEGORY_ID, CategoryPeer::ENTITY_ID, $join_behavior);
$stmt = BasePeer::doSelect($criteria, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = ProductPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = ProductPeer::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 = ProductPeer::getOMClass();
$obj1 = new $cls();
$obj1->hydrate($row);
ProductPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Category rows
$key2 = CategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = CategoryPeer::getInstanceFromPool($key2);
if (!$obj2) {
$cls = CategoryPeer::getOMClass();
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
CategoryPeer::addInstanceToPool($obj2, $key2);
}
// if obj2 loaded
// Add the $obj1 (Product) to the collection in $obj2 (Category)
$obj2->addProduct($obj1);
}
// if joined row not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例3: retrieveByPK
/**
* Retrieve a single object by pkey.
*
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
* @return Category
*/
public static function retrieveByPK($pk, PropelPDO $con = null)
{
if (null !== ($obj = CategoryPeer::getInstanceFromPool((string) $pk))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(CategoryPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(CategoryPeer::DATABASE_NAME);
$criteria->add(CategoryPeer::ID, $pk);
$v = CategoryPeer::doSelect($criteria, $con);
return !empty($v) > 0 ? $v[0] : null;
}
示例4: doSelectJoinAllExceptBook
public static function doSelectJoinAllExceptBook(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
ArticlePeer::addSelectColumns($c);
$startcol2 = ArticlePeer::NUM_COLUMNS - ArticlePeer::NUM_LAZY_LOAD_COLUMNS;
CategoryPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (CategoryPeer::NUM_COLUMNS - CategoryPeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(ArticlePeer::CATEGORY_ID), array(CategoryPeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = ArticlePeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = ArticlePeer::getInstanceFromPool($key1))) {
} else {
$omClass = ArticlePeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
ArticlePeer::addInstanceToPool($obj1, $key1);
}
$key2 = CategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = CategoryPeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = CategoryPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
CategoryPeer::addInstanceToPool($obj2, $key2);
}
$obj2->addArticle($obj1);
}
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例5: findPk
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return Category|Category[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if (null !== ($obj = CategoryPeer::getInstanceFromPool((string) $key)) && !$this->formatter) {
// the object is already in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(CategoryPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select || $this->selectColumns || $this->asColumns || $this->selectModifiers || $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
示例6: doSelectJoinAllExceptCourses
/**
* Selects a collection of UserQuestionTag objects pre-filled with all related objects except Courses.
*
* @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 UserQuestionTag objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptCourses(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);
}
UserQuestionTagPeer::addSelectColumns($c);
$startcol2 = UserQuestionTagPeer::NUM_COLUMNS - UserQuestionTagPeer::NUM_LAZY_LOAD_COLUMNS;
UserPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (UserPeer::NUM_COLUMNS - UserPeer::NUM_LAZY_LOAD_COLUMNS);
CategoryPeer::addSelectColumns($c);
$startcol4 = $startcol3 + (CategoryPeer::NUM_COLUMNS - CategoryPeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(UserQuestionTagPeer::USER_ID), array(UserPeer::ID), $join_behavior);
$c->addJoin(array(UserQuestionTagPeer::CATEGORY_ID), array(CategoryPeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = UserQuestionTagPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = UserQuestionTagPeer::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 = UserQuestionTagPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
UserQuestionTagPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined User rows
$key2 = UserPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = UserPeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = UserPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
UserPeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (UserQuestionTag) to the collection in $obj2 (User)
$obj2->addUserQuestionTag($obj1);
}
// if joined row is not null
// Add objects for joined Category rows
$key3 = CategoryPeer::getPrimaryKeyHashFromRow($row, $startcol3);
if ($key3 !== null) {
$obj3 = CategoryPeer::getInstanceFromPool($key3);
if (!$obj3) {
$omClass = CategoryPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj3 = new $cls();
$obj3->hydrate($row, $startcol3);
CategoryPeer::addInstanceToPool($obj3, $key3);
}
// if $obj3 already loaded
// Add the $obj1 (UserQuestionTag) to the collection in $obj3 (Category)
$obj3->addUserQuestionTag($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}