table e.g.:
A B C D E F
============================
1 2 3 null null 4
results = cursor().execute('select * from table')
results.fetchone()
(1, 2, 3, 4, null, null)
results.description
('A', 'B', 'C', 'D', 'E', 'F')
I.e. zipping the description and the results assigns the wrong values.
This seems to occur especially for columns whose returned values were null
(None).
Original issue reported on code.google.com by wil...@gmail.com on 20 May 2013 at 4:46
Original issue reported on code.google.com by
wil...@gmail.com
on 20 May 2013 at 4:46