[DDC-1069] setParameter[s]() examples on DQL page uses ":" even though that is not supported Created: 13/Mar/11 Updated: 18/Nov/11 Resolved: 29/Mar/11 |
|
| Status: | Resolved |
| Project: | Doctrine 2 - ORM |
| Component/s: | ORM |
| Affects Version/s: | 2.0.2 |
| Fix Version/s: | 2.0.4 |
| Security Level: | All |
| Type: | Documentation | Priority: | Minor |
| Reporter: | André R. | Assignee: | Benjamin Eberlei |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
http://www.doctrine-project.org/docs/orm/2.0/en/reference/dql-doctrine-query-language.html Among others: Despite this does not work and doc says "When referencing the parameters in Query#setParameter($param, $value) both named and positional parameters are used without their prefixies." on same page. Fresh on doctrine 2.0 you typically copy past examples to try out stuff, and when exception then says that ":id" is not a valid param on this query you end up not knowing what went wrong. |
| Comments |
| Comment by Michael Ridgway [ 21/Mar/11 ] |
|
I posted a simple patch for this at https://github.com/doctrine/orm-documentation/pull/20 |
| Comment by André R. [ 22/Mar/11 ] |
|
Looks good! |
| Comment by Benjamin Eberlei [ 29/Mar/11 ] |
|
Resolved |
| Comment by Christian Stoller [ 18/Nov/11 ] |
|
You can find the same error in the PHPDoc of the methods setParameter(...) and setParameters(..) in class Doctrine\ORM\QueryBuilder. * <code>
* $qb = $em->createQueryBuilder()
* ->select('u')
* ->from('User', 'u')
* ->where('u.id = :user_id')
* ->setParameter(':user_id', 1);
* </code>
It would be nice if this will be fixed, because it is confusing, if you look at the autocomplete notice of the IDEs. |