1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

fixed setQueryHint > setHint

This commit is contained in:
Brikou CARRE 2011-05-18 02:51:22 -07:00
parent 302199938f
commit d436ea19df

View file

@ -174,8 +174,8 @@ SQL\_NO\_CACHE query hint.
<?php <?php
$dql = "SELECT p, c, a FROM BlogPost p JOIN p.category c JOIN p.author a WHERE ..."; $dql = "SELECT p, c, a FROM BlogPost p JOIN p.category c JOIN p.author a WHERE ...";
$query = $m->createQuery($dql); $query = $m->createQuery($dql);
$query->setQueryHint(Query::HINT_CUSTOM_OUTPUT_WALKER, 'DoctrineExtensions\Query\MysqlWalker'); $query->setHint(Query::HINT_CUSTOM_OUTPUT_WALKER, 'DoctrineExtensions\Query\MysqlWalker');
$query->setQueryHint("mysqlWalker.sqlNoCache", true); $query->setHint("mysqlWalker.sqlNoCache", true);
$results = $query->getResult(); $results = $query->getResult();
Our ``MysqlWalker`` will extend the default ``SqlWalker``. We will Our ``MysqlWalker`` will extend the default ``SqlWalker``. We will
@ -215,4 +215,3 @@ huge benefits with using vendor specific features. This would still
allow you write DQL queries instead of NativeQueries to make use of allow you write DQL queries instead of NativeQueries to make use of
vendor specific features. vendor specific features.