up vote 2 down vote favorite
share [g+] share [fb]

Let's imagine something like this:

class MyTable extends Doctrine_Table
{
    public function construct()
    {
        $q = Doctrine_Query::create()->from('MyTable t')
                                     ->orderBy('t.creationDate DESC')
                                     ->limit(5);
        $this->addNamedQuery('top5', $q);
    }
}

Later I can do something like this:

$top5 = Doctrine::getTable('MyTable')->find('top5');

Is there any way I can set the limit when using the named query, and not when defining it? I'd would really love to do something like:

$top5 = Doctrine::getTable('MyTable')->find('topX', 5);

or

$top5 = Doctrine::getTable('MyTable')->find('topX', array('limit' => 5));

Thx in advance! :-)

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Nothing prevents you from writing your own method or function that clones the named unlimited query, sets a limit on the clone and then returns results.

link|improve this answer
feedback

I think the shortest way can be:

Doctrine_Query::create()->select()->from('MyTable')->limit(5)->execute();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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