标签: python mysql python-db-api
Python DB API在执行的游标上调用fetchall时返回元组列表。如果使用_mysql模块,fetch_row有一个how参数,允许获取字典而不是元组。如何用光标实现相同的效果?
how
答案 0 :(得分:3)
引自the documentation
DictCursor Like Cursor except it returns rows as dictionaries.