Hi All,

I'm trying to get a count of the number of rows in my queryset,
basically a SELECT COUNT(*).

According to the django documentation, you can simply use
queryset.count(), but I'm getting the error:

object has no attribute 'count'

my view code is:

hResults = Results.objects.select_related().get(home_team_id = '3')
        hResCount = hResults.count()

my model is:

class Results(models.Model):
    results_id = models.AutoField(primary_key=True)
    league_id = models.ForeignKey(Leagues)
    home_team_id = models.ForeignKey(Teams, related_name='home')
    away_team_id = models.ForeignKey(Teams, related_name='away')

I've even tried len(hResults) and I get the same error.

The count attribute seems to work ok though if I just do
Results.objects.all()

Does anyone have any ideas why this errors?

Regards,

wubble u

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to