Python:使用 mysqldb 将 MySQL 表作为字典导入?
有谁知道我如何使用 mysqldb 将包含大量行的 MySQL 表转换为 Python 中的字典对象列表?
Anyone know how I can use mysqldb to turn a MySQL table, with lots of rows, into a list of dictionary objects in Python?
我的意思是将一组包含a"、b"和c"列的 MySQL 行转换为如下所示的 Python 对象:
I mean turning a set of MySQL rows, with columns 'a', 'b', and 'c', into a Python object that that looks like this:
data = [ { 'a':'A', 'b':(2, 4), 'c':3.0 }, { 'a':'Q', 'b':(1, 4), 'c':5.0 }, { 'a':'T', 'b':(2, 8), 'c':6.1 } ]
谢谢:)
推荐答案
MySQLdb 为此有一个单独的游标类,即 DictCursor.您可以将要使用的游标类传递给 MySQLdb.connect():
MySQLdb has a separate cursor class for this, the DictCursor. You can pass the cursor class you want to use to MySQLdb.connect():
import MySQLdb.cursors
MySQLdb.connect(host='...', cursorclass=MySQLdb.cursors.DictCursor)
相关文章