Fixed #25455 -- Optimized dictfetchall() example.
Thanks aklim007 for the suggestion.
This commit is contained in:
parent
ce531f7ad7
commit
361f60479d
|
@ -282,9 +282,9 @@ using something like this::
|
||||||
|
|
||||||
def dictfetchall(cursor):
|
def dictfetchall(cursor):
|
||||||
"Return all rows from a cursor as a dict"
|
"Return all rows from a cursor as a dict"
|
||||||
desc = cursor.description
|
columns = [col[0] for col in cursor.description]
|
||||||
return [
|
return [
|
||||||
dict(zip([col[0] for col in desc], row))
|
dict(zip(columns, row))
|
||||||
for row in cursor.fetchall()
|
for row in cursor.fetchall()
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue