Im trying to pass the ORDER BY column as a parameter in DQL, like below:

$this->em->createQuery("SELECT t FROM Entities\Topic t ORDER BY :order")
     ->setParameters( array('order' => 't.name') )->getResult();

I guess it doesn't work because setParameter will escape :order, however the below solution doesn't seem very good:

$order = 't.name'; // Dynamic value
$this->em->createQuery("SELECT t FROM Entities\Topic t ORDER BY $order")
     ->getResult();

Is there a better way to solve this?

link|improve this question

79% accept rate
feedback

1 Answer

In that case use Doctrines Querybuilder:

$order = 't.name'; // Dynamic value

$qb = $this->_em->createQueryBuilder();
$qb->select('t')
   ->from('Entities\Topic', 't')
   ->orderBy($order);
link|improve this answer
I really don't like the query builder in doctrine. – Dennis Oct 6 '11 at 16:57
2  
@Dennis sorry if this answer hurt your feelings ;) no, seriously - if you have a query which is built dynamically - thats a real use case for the query builder. But on the other hand, I think your solution actually is ok. I wouldnt do variable interpolation, that looks too unclear. If I were you, just do: ->createQuery('SELECT t FROM Entities\Topic t ORDER BY ' . $order) and be done with it. – Max Oct 7 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

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