0
我使用MySQLdb與python3.6。
python3.5 + MySQLdb:'charset'是一個無效的關鍵字參數
爲紐帶上面說的,這是我該怎麼做:
import _mysql
try:
db = _mysql.connect(host='localhost', user='root', passwd='password', db='mydb', charset='utf8')
except Exception as e:
print(str(e))
但是,我得到一個錯誤:
'charset' is an invalid keyword argument for this function
如果我刪除charset='utf8'
,一切都會好起來。但我需要utf8
,因爲我的數據庫中有一些特殊字符。