本文整理汇总了PHP中Propel\Runtime\ActiveQuery\Criteria::getNewCriterion方法的典型用法代码示例。如果您正苦于以下问题:PHP Criteria::getNewCriterion方法的具体用法?PHP Criteria::getNewCriterion怎么用?PHP Criteria::getNewCriterion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Runtime\ActiveQuery\Criteria
的用法示例。
在下文中一共展示了Criteria::getNewCriterion方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testPrecedence
/**
* Verify that AND and OR criterion are nested correctly.
*/
public function testPrecedence()
{
$cn1 = $this->c->getNewCriterion("INVOICE.COST", "1000", Criteria::GREATER_EQUAL);
$cn2 = $this->c->getNewCriterion("INVOICE.COST", "2000", Criteria::LESS_EQUAL);
$cn3 = $this->c->getNewCriterion("INVOICE.COST", "8000", Criteria::GREATER_EQUAL);
$cn4 = $this->c->getNewCriterion("INVOICE.COST", "9000", Criteria::LESS_EQUAL);
$this->c->add($cn1->addAnd($cn2));
$this->c->addOr($cn3->addAnd($cn4));
$expect = $this->getSql("SELECT FROM INVOICE WHERE ((INVOICE.COST>=:p1 AND INVOICE.COST<=:p2) OR (INVOICE.COST>=:p3 AND INVOICE.COST<=:p4))");
$expect_params = [['table' => 'INVOICE', 'column' => 'COST', 'value' => '1000'], ['table' => 'INVOICE', 'column' => 'COST', 'value' => '2000'], ['table' => 'INVOICE', 'column' => 'COST', 'value' => '8000'], ['table' => 'INVOICE', 'column' => 'COST', 'value' => '9000']];
try {
$params = [];
$result = $this->c->createSelectSql($params);
} catch (PropelException $e) {
$this->fail("PropelException thrown in Criteria::createSelectSql()");
}
$this->assertEquals($expect, $result);
$this->assertEquals($expect_params, $params);
}
示例2: doDelete
/**
* Performs a DELETE on the database, given a DiaporamaVersion or Criteria object OR a primary key value.
*
* @param mixed $values Criteria or DiaporamaVersion object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param ConnectionInterface $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doDelete($values, ConnectionInterface $con = null)
{
if (null === $con) {
$con = Propel::getServiceContainer()->getWriteConnection(DiaporamaVersionTableMap::DATABASE_NAME);
}
if ($values instanceof Criteria) {
// rename for clarity
$criteria = $values;
} elseif ($values instanceof \Diaporamas\Model\DiaporamaVersion) {
// it's a model object
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
} else {
// it's a primary key, or an array of pks
$criteria = new Criteria(DiaporamaVersionTableMap::DATABASE_NAME);
// primary key is composite; we therefore, expect
// the primary key passed to be an array of pkey values
if (count($values) == count($values, COUNT_RECURSIVE)) {
// array is not multi-dimensional
$values = array($values);
}
foreach ($values as $value) {
$criterion = $criteria->getNewCriterion(DiaporamaVersionTableMap::ID, $value[0]);
$criterion->addAnd($criteria->getNewCriterion(DiaporamaVersionTableMap::VERSION, $value[1]));
$criteria->addOr($criterion);
}
}
$query = DiaporamaVersionQuery::create()->mergeWith($criteria);
if ($values instanceof Criteria) {
DiaporamaVersionTableMap::clearInstancePool();
} elseif (!is_object($values)) {
// it's a primary key, or an array of pks
foreach ((array) $values as $singleval) {
DiaporamaVersionTableMap::removeInstanceFromPool($singleval);
}
}
return $query->delete($con);
}
示例3: testScenario
//.........这里部分代码省略.........
$this->assertNotNull($m2_lookup, 'Can find just-created media item');
$this->assertEquals(md5(file_get_contents($blob2_path)), md5(stream_get_contents($m2_lookup->getCoverImage())), 'BLOB was correctly overwritten');
// Testing doCount() functionality
// -------------------------------
$records = BookQuery::create()->find();
$count = BookQuery::create()->count();
$this->assertEquals($count, count($records), 'correct number of results');
// Test many-to-many relationships
// ---------------
// init book club list 1 with 2 books
$blc1 = new BookClubList();
$blc1->setGroupLeader("Crazyleggs");
$blc1->setTheme("Happiness");
$brel1 = new BookListRel();
$brel1->setBook($phoenix);
$brel2 = new BookListRel();
$brel2->setBook($dj);
$blc1->addBookListRel($brel1);
$blc1->addBookListRel($brel2);
$blc1->save();
$this->assertNotNull($blc1->getId(), 'BookClubList 1 was saved');
// init book club list 2 with 1 book
$blc2 = new BookClubList();
$blc2->setGroupLeader("John Foo");
$blc2->setTheme("Default");
$brel3 = new BookListRel();
$brel3->setBook($phoenix);
$blc2->addBookListRel($brel3);
$blc2->save();
$this->assertNotNull($blc2->getId(), 'BookClubList 2 was saved');
// re-fetch books and lists from db to be sure that nothing is cached
$crit = new Criteria();
$crit->add(BookTableMap::COL_ID, $phoenix->getId());
$phoenix = BookQuery::create(null, $crit)->findOne();
$this->assertNotNull($phoenix, "book 'phoenix' has been re-fetched from db");
$crit = new Criteria();
$crit->add(BookClubListTableMap::COL_ID, $blc1->getId());
$blc1 = BookClubListQuery::create(null, $crit)->findOne();
$this->assertNotNull($blc1, 'BookClubList 1 has been re-fetched from db');
$crit = new Criteria();
$crit->add(BookClubListTableMap::COL_ID, $blc2->getId());
$blc2 = BookClubListQuery::create(null, $crit)->findOne();
$this->assertNotNull($blc2, 'BookClubList 2 has been re-fetched from db');
$relCount = $phoenix->countBookListRels();
$this->assertEquals(2, $relCount, "book 'phoenix' has 2 BookListRels");
$relCount = $blc1->countBookListRels();
$this->assertEquals(2, $relCount, 'BookClubList 1 has 2 BookListRels');
$relCount = $blc2->countBookListRels();
$this->assertEquals(1, $relCount, 'BookClubList 2 has 1 BookListRel');
// Cleanup (tests DELETE)
// ----------------------
// Removing books that were just created
// First finding book by PK (=$phoenix_id) ....
$hp = BookQuery::create()->findPk($phoenix_id);
$this->assertNotNull($hp, 'Could find just-created book');
// Attempting to delete [multi-table] by found pk
$c = new Criteria();
$c->add(BookTableMap::COL_ID, $hp->getId());
// The only way for cascading to work currently
// is to specify the author_id and publisher_id (i.e. the fkeys
// have to be in the criteria).
$c->add(AuthorTableMap::COL_ID, $hp->getAuthor()->getId());
$c->add(PublisherTableMap::COL_ID, $hp->getPublisher()->getId());
$c->setSingleRecord(true);
BookTableMap::doDelete($c);
// Checking to make sure correct records were removed.
$this->assertEquals(3, AuthorQuery::create()->count(), 'Correct records were removed from author table');
$this->assertEquals(3, PublisherQuery::create()->count(), 'Correct records were removed from publisher table');
$this->assertEquals(3, BookQuery::create()->count(), 'Correct records were removed from book table');
// Attempting to delete books by complex criteria
$c = new Criteria();
$cn = $c->getNewCriterion(BookTableMap::COL_ISBN, "043935806X");
$cn->addOr($c->getNewCriterion(BookTableMap::COL_ISBN, "0380977427"));
$cn->addOr($c->getNewCriterion(BookTableMap::COL_ISBN, "0140422161"));
$c->add($cn);
BookTableMap::doDelete($c);
// Attempting to delete book [id = $td_id]
$td->delete();
// Attempting to delete authors
AuthorTableMap::doDelete($stephenson_id);
AuthorTableMap::doDelete($byron_id);
$grass->delete();
// Attempting to delete publishers
PublisherTableMap::doDelete($morrow_id);
PublisherTableMap::doDelete($penguin_id);
$vintage->delete();
// These have to be deleted manually also since we have onDelete
// set to SETNULL in the foreign keys in book. Is this correct?
$rowling->delete();
$scholastic->delete();
$blc1->delete();
$blc2->delete();
$this->assertCount(0, AuthorQuery::create()->find(), 'no records in [author] table');
$this->assertCount(0, PublisherQuery::create()->find(), 'no records in [publisher] table');
$this->assertCount(0, BookQuery::create()->find(), 'no records in [book] table');
$this->assertCount(0, ReviewQuery::create()->find(), 'no records in [review] table');
$this->assertCount(0, MediaQuery::create()->find(), 'no records in [media] table');
$this->assertCount(0, BookClubListQuery::create()->find(), 'no records in [book_club_list] table');
$this->assertCount(0, BookListRelQuery::create()->find(), 'no records in [book_x_list] table');
}
示例4: testHaving
public function testHaving()
{
$c = new Criteria();
$c->addSelectColumn(BookTableMap::TITLE);
$c->addAsColumn('isb_n', BookTableMap::ISBN);
$crit = $c->getNewCriterion('isb_n', '1234567890123');
$c->addHaving($crit);
$expected = 'SELECT book.TITLE, book.ISBN AS isb_n FROM book HAVING isb_n=:p1';
$params = array();
$result = $c->createSelectSql($params);
$this->assertEquals($expected, $result);
$c->doSelect($this->con);
$expected = 'SELECT book.TITLE, book.ISBN AS isb_n FROM book HAVING isb_n=\'1234567890123\'';
$this->assertEquals($expected, $this->con->getLastExecutedQuery());
}
示例5: buildJoinCondition
/**
* Set the custom join condition Criterion based on the conditions of this join
*
* @param Criteria $c A Criteria object to get Criterions from
*/
public function buildJoinCondition(Criteria $c)
{
/** @var AbstractCriterion $joinCondition */
$joinCondition = null;
for ($i = 0; $i < $this->count; $i++) {
$criterion = $c->getNewCriterion($this->getLeftColumn($i), $this->getLeftColumn($i) . $this->getOperator($i) . $this->getRightColumn($i), Criteria::CUSTOM);
if (null === $joinCondition) {
$joinCondition = $criterion;
} else {
$joinCondition = $joinCondition->addAnd($criterion);
}
}
$this->joinCondition = $joinCondition;
}
示例6: testHaving
public function testHaving()
{
$c = new Criteria();
$c->addSelectColumn(BookTableMap::TITLE);
$c->addSelectColumn(BookTableMap::ISBN);
$crit = $c->getNewCriterion('ISBN', '1234567890123');
$c->addHaving($crit);
$c->addGroupByColumn(BookTableMap::TITLE);
$c->addGroupByColumn(BookTableMap::ISBN);
$expected = $this->getSql('SELECT book.TITLE, book.ISBN FROM `book` GROUP BY book.TITLE,book.ISBN HAVING ISBN=:p1');
$params = array();
$result = $c->createSelectSql($params);
$this->assertEquals($expected, $result);
$c->doSelect($this->con);
$expected = $this->getSql('SELECT book.TITLE, book.ISBN FROM `book` GROUP BY book.TITLE,book.ISBN HAVING ISBN=\'1234567890123\'');
$this->assertEquals($expected, $this->con->getLastExecutedQuery());
}
示例7: testMergeWithHavingConditions
public function testMergeWithHavingConditions()
{
$c1 = new Criteria();
$cton = $c1->getNewCriterion(BookTableMap::COL_TITLE, 'foo', Criteria::EQUAL);
$c1->addHaving($cton);
$c2 = new Criteria();
$c1->mergeWith($c2);
$sql = 'SELECT FROM HAVING book.TITLE=:p1';
$this->assertCriteriaTranslation($c1, $sql, 'mergeWith() does not remove an existing having condition');
$c1 = new Criteria();
$c2 = new Criteria();
$cton = $c2->getNewCriterion(BookTableMap::COL_TITLE, 'foo', Criteria::EQUAL);
$c2->addHaving($cton);
$c1->mergeWith($c2);
$sql = 'SELECT FROM HAVING book.TITLE=:p1';
$this->assertCriteriaTranslation($c1, $sql, 'mergeWith() merges having condition to an empty having');
$c1 = new Criteria();
$cton = $c1->getNewCriterion(BookTableMap::COL_TITLE, 'foo', Criteria::EQUAL);
$c1->addHaving($cton);
$c2 = new Criteria();
$cton = $c2->getNewCriterion(BookTableMap::COL_TITLE, 'bar', Criteria::EQUAL);
$c2->addHaving($cton);
$c1->mergeWith($c2);
$sql = 'SELECT FROM HAVING (book.TITLE=:p1 AND book.TITLE=:p2)';
$this->assertCriteriaTranslation($c1, $sql, 'mergeWith() combines having with AND');
}
示例8: shiftRLValues
/**
* Adds $delta to all L and R values that are >= $first and <= $last.
* '$delta' can also be negative.
*
* @param int $delta Value to be shifted by, can be negative
* @param int $first First node to be shifted
* @param int $last Last node to be shifted (optional)
* @param ConnectionInterface $con Connection to use.
*/
public static function shiftRLValues($delta, $first, $last = null, ConnectionInterface $con = null)
{
if ($con === null) {
$con = Propel::getServiceContainer()->getWriteConnection(CategoryTableMap::DATABASE_NAME);
}
// Shift left column values
$whereCriteria = new Criteria(CategoryTableMap::DATABASE_NAME);
$criterion = $whereCriteria->getNewCriterion(ChildCategory::LEFT_COL, $first, Criteria::GREATER_EQUAL);
if (null !== $last) {
$criterion->addAnd($whereCriteria->getNewCriterion(ChildCategory::LEFT_COL, $last, Criteria::LESS_EQUAL));
}
$whereCriteria->add($criterion);
$valuesCriteria = new Criteria(CategoryTableMap::DATABASE_NAME);
$valuesCriteria->add(ChildCategory::LEFT_COL, array('raw' => ChildCategory::LEFT_COL . ' + ?', 'value' => $delta), Criteria::CUSTOM_EQUAL);
$whereCriteria->doUpdate($valuesCriteria, $con);
// Shift right column values
$whereCriteria = new Criteria(CategoryTableMap::DATABASE_NAME);
$criterion = $whereCriteria->getNewCriterion(ChildCategory::RIGHT_COL, $first, Criteria::GREATER_EQUAL);
if (null !== $last) {
$criterion->addAnd($whereCriteria->getNewCriterion(ChildCategory::RIGHT_COL, $last, Criteria::LESS_EQUAL));
}
$whereCriteria->add($criterion);
$valuesCriteria = new Criteria(CategoryTableMap::DATABASE_NAME);
$valuesCriteria->add(ChildCategory::RIGHT_COL, array('raw' => ChildCategory::RIGHT_COL . ' + ?', 'value' => $delta), Criteria::CUSTOM_EQUAL);
$whereCriteria->doUpdate($valuesCriteria, $con);
}
示例9: testDoDelete_ComplexCriteria
/**
* Test using a complex criteria to delete multiple rows from a single table.
*/
public function testDoDelete_ComplexCriteria()
{
//print "Attempting to delete books by complex criteria: ";
$c = new Criteria();
$cn = $c->getNewCriterion(BookTableMap::ISBN, "043935806X");
$cn->addOr($c->getNewCriterion(BookTableMap::ISBN, "0380977427"));
$cn->addOr($c->getNewCriterion(BookTableMap::ISBN, "0140422161"));
$c->add($cn);
BookTableMap::doDelete($c);
// now there should only be one book left; "The Tin Drum"
$books = BookQuery::create()->find();
$this->assertEquals(1, count($books), "Expected 1 book remaining after deleting.");
$this->assertEquals("The Tin Drum", $books[0]->getTitle(), "Expect the only remaining book to be 'The Tin Drum'");
}
示例10: sortableShiftRank
/**
* Adds $delta to all Rank values that are >= $first and <= $last.
* '$delta' can also be negative.
*
* @param int $delta Value to be shifted by, can be negative
* @param int $first First node to be shifted
* @param int $last Last node to be shifted
* @param ConnectionInterface $con Connection to use.
*/
public static function sortableShiftRank($delta, $first, $last = null, ConnectionInterface $con = null)
{
if (null === $con) {
$con = Propel::getServiceContainer()->getWriteConnection(WorkTableMap::DATABASE_NAME);
}
$whereCriteria = new Criteria(WorkTableMap::DATABASE_NAME);
$criterion = $whereCriteria->getNewCriterion(WorkTableMap::RANK_COL, $first, Criteria::GREATER_EQUAL);
if (null !== $last) {
$criterion->addAnd($whereCriteria->getNewCriterion(WorkTableMap::RANK_COL, $last, Criteria::LESS_EQUAL));
}
$whereCriteria->add($criterion);
$valuesCriteria = new Criteria(WorkTableMap::DATABASE_NAME);
$valuesCriteria->add(WorkTableMap::RANK_COL, array('raw' => WorkTableMap::RANK_COL . ' + ?', 'value' => $delta), Criteria::CUSTOM_EQUAL);
$whereCriteria->doUpdate($valuesCriteria, $con);
WorkTableMap::clearInstancePool();
}