On Tue, 2008-04-01 at 12:06 +0200, Constantin Christmann wrote:
> Hello,
> 
> On my localhost with Postgres cursor.fetchall() returns a list of tuples 
> (one list element per row).
> And on the production server with MySQL a tuple of tuples... How can 
> that be... is there perhaps an inconsistency in the db interface?

Both are valid and consistent: the DB API says they will return a
sequence of sequences. In almost all cases you'll just be iterating over
the results returned and so any sequence will do.

This isn't at all Django related, though. It's part of the python
database wrappers.

Regards,
Malcolm

-- 
If Barbie is so popular, why do you have to buy her friends? 
http://www.pointy-stick.com/blog/


--~--~---------~--~----~------------~-------~--~----~
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