我的程式碼如下:
只需要再 獲取連線後
在 cursor(dictionary=True)
中加上dictionary 即可。
本人環境是 py3.6
官方文件是這樣的
解決方法:
cnx = mysql.connector.connect(user='root',password='123456',host='127.0.0.1',port='3306', database='test')
cursor = cnx.cursor(dictionary=True)
我的程式碼如下:
只需要再 獲取連線後
在 cursor(dictionary=True)
中加上dictionary 即可。
本人環境是 py3.6
解決方法:
cnx = mysql.connector.connect(user='root',password='123456',host='127.0.0.1',port='3306', database='test')
cursor = cnx.cursor(dictionary=True)