On Fri, 2009-04-10 at 04:50 -0700, MS wrote:
[...]
> If it's not available any longer

Which it isn't.

>  then is there any good (built-in) way
> to write custom SQL queries wich would return dicts instead of tuples?

You know the order the values will be returned in and you know the names
of the columns. So you can create an iterator that returns the
dictionary results:

        def dict_iterator(cursor, col_names):
           for row in cursor.fetchall():
              yield dict(zip(col_names, row))
        
Regards,
Malcolm



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