MySQL Connector/Python 查詢如何返回欄位名

kuibatian發表於2019-12-11

我的程式碼如下:
title

只需要再 獲取連線後
cursor(dictionary=True) 中加上dictionary 即可。

本人環境是 py3.6
title

官方文件是這樣的

解決方法:

cnx = mysql.connector.connect(user='root',password='123456',host='127.0.0.1',port='3306', database='test')
cursor = cnx.cursor(dictionary=True)

相關文章