有没有办法使用pymysql从fetchall()作为字典获取结果?
最佳答案
PyMySQL包含DictCursor
。它可以满足我的需求。使用方法如下:
import pymysql
connection = pymysql.connect(db="test")
cursor = connection.cursor(pymysql.cursors.DictCursor)
cursor.execute("SELECT ...")
https://github.com/PyMySQL/PyMySQL/blob/master/pymysql/tests/test_DictCursor.py
关于python - pymysql fetchall()结果作为字典?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4940670/