I have the following code in my Symfony2 Repository Class...

$query = $this->createQueryBuilder('foo')
        ->where('foo.bar = :id')
        ->setParameter('id', $myID)
        ->getQuery();

How do I get the number of rows found by the database?

Thanks in advance

link|improve this question

75% accept rate
feedback

3 Answers

up vote 8 down vote accepted

You need to execute DQL to do something you want.

$query = $this->createQueryBuilder()
              ->from('foo', 'f')
              ->where('foo.bar = :id')
              ->setParameter('id', $myID)
              ->getQuery();


$total = $query->select('COUNT(f)')
               ->getQuery()
               ->getSingleScalarResult();
link|improve this answer
feedback

You execute the query than get the results. When you have the results, you get the number of record by doing a count on the results:

$results = $query->getResults();
$resultCount = count($results);

If you are concerned with paging, like getting 25 records out of the total. Then, you have two choices.

  • You perform the query twice, one time to get total results, another time to retrieve only 25 results using the method setFirstResult and setMaxResults. This method setFirstResult enable you to set the offset and the second, setMaxResults, number of records. The following code will give you results ranging from 25 to 50, it's the second page if you use 25 records by page.

    $query->setFirstResults(25);
    $query->setMaxResults(25);

  • You can check doctrine-extensions for Doctrine2 which have paginator support. These extensions have been made by one of the developer of Doctrine2. You can check it here.

Hope this help.

Regards,
Matt

link|improve this answer
2  
@Reuven answer is a bit better, for the count part, because it uses the internal COUNT function of the database manager. It is better because the results are not transferred to get the count. My other comments still apply. – Matt Nov 22 '11 at 13:02
Thanks. I guess my answer is better only if you need only the count, and not the objects. – Reuven Nov 22 '11 at 17:32
feedback

I think you can do something like that:

$query = $this->createQueryBuilder()
    ->select('COUNT(f.id)') 
    ->from('foo', 'f')
    ->where('foo.bar = :id')
    ->setParameter('id', $myID)
    ->getQuery();

$total = $query->getSingleScalarResult();
link|improve this answer
This is a great answer because I think it only requires one database query. – Acyra Jan 29 at 22: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.