I'm noticing some oddness with select_related()...

>>> invoice = Invoice.objects.select_related().get(pk=7000)
>>> len(connection.queries)
1
>>> invoice.Student_ID
<Student: Student object>
>>> len(connection.queries)
2

Shouldn't it be the same number of queries?

Here we have an Invoice with a foreign key to a student. I've got a
mysql db.

I think i'm missing something really obvious, can anyone lend a hand?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to