在使用MySQL存儲(chǔ)含中文的字典時(shí)芥挣,出現(xiàn):codec can't encode characters in position 64-65
的錯(cuò)誤提示,原因是沒(méi)有定義字符編碼
在數(shù)據(jù)庫(kù)連接時(shí)加上charset=utf8
mdb = pymysql.connect('localhost', 'root', '123456', 'jd_seach',charset='utf8')
在使用MySQL存儲(chǔ)含中文的字典時(shí)芥挣,出現(xiàn):codec can't encode characters in position 64-65
的錯(cuò)誤提示,原因是沒(méi)有定義字符編碼
在數(shù)據(jù)庫(kù)連接時(shí)加上charset=utf8
mdb = pymysql.connect('localhost', 'root', '123456', 'jd_seach',charset='utf8')