Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the doctrine query builder to buil my query.

$qb = $this->getEntityManager()->createQueryBuilder();
$qb->select(array('u'))->from('Account', 'a');

-- problem here
$qb->where('lower_unaccent(u.email) LIKE :search');
$qb->setParameter('search', $search['search'] . '%');

This works fine, but i would like to apply the lower_unaccent function also tho the search parameter.

Is there a way to do it with the query builder? Because when i do 'LOWER_UNACCENT(u.email) LIKE LOWER_UNACCENT(:search)' I have the following error Error: Expected Doctrine\ORM\Query\Lexer::T_STRING, got 'LOWER_UNACCENT' even if i change LOWER_UNACCENT TO LOWER, I have the same error message.

share|improve this question
Did you try, $qb->setParameter('search', '%'.$search['search'] . '%'); – Adem Öztaß Jan 30 at 15:15
This is not the problem, i want to apply a function on the parameter. – yokoloko Jan 30 at 15:18

1 Answer

By default, I'm pretty sure you can't do that.
lower_unaccent is not standard SQL, and as far as I can see, not supported by Doctrine.

What you can do is extend DQL with user-defined functions, which will do whatever you want. It is not so hard to implement. Here is some documentation:

http://docs.doctrine-project.org/en/2.0.x/cookbook/dql-user-defined-functions.html

http://docs.doctrine-project.org/en/2.0.x/reference/dql-doctrine-query-language.html#adding-your-own-functions-to-the-dql-language

share|improve this answer
My bad, i haven't been clear enough :( I implemented the lower_unaccent function, this workds fine. But i can't find a way to apply it to the search parameter. eg $qb->where('lower_unaccent(u.email) LIKE lower_unaccent(:search)'; – yokoloko Jan 30 at 15:33
I tried with dql instead of query builder and I have the same error. – yokoloko Jan 30 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.