Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$query = $this->getEntityManager()->createQuery('
                SELECT COUNT(s) FROM MyDiaryBundle:TrainingSession s
                WHERE s.status = :completed
                AND s.user = :user')
                ->setParameter('user',$user)
                ->setParameter('completed','confirmed');
$result = $query->getResult();

RESULT : array(1) { [0]=> array(1) { [1]=> string(1) "0" } }

And why is the nested array keyed with '1' ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Use $query->getSingleScalarResult()

To answer your question – as far as I know, getResult() will hydrate an array of entities, so the first dimension holds the list of entities, and the 2nd dimension is the entity as well as any additional fields that are not part of the entity (such as the result of COUNT(s)).

The nested array element is probably keyed with '1' because you haven't provided as alias for the COUNT(s), such as COUNT(s) AS sessionCount.

share|improve this answer

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.