MySQL python DBAPI。如何获得字典而不是元组?

时间:2011-01-16 16:50:05

标签: python mysql python-db-api

Python DB API在执行的游标上调用fetchall时返回元组列表。如果使用_mysql模块,fetch_row有一个how参数,允许获取字典而不是元组。如何用光标实现相同的效果?

1 个答案:

答案 0 :(得分:3)

引自the documentation

DictCursor
    Like Cursor except it returns rows as dictionaries.