执行 pymysql.connect 时出现错误 Keyerror 255
Posted
技术标签:
【中文标题】执行 pymysql.connect 时出现错误 Keyerror 255【英文标题】:Error Keyerror 255 when executing pymysql.connect 【发布时间】:2018-01-04 05:15:21 【问题描述】:这里是代码
import pymysql
pymysql.connect(
host='localhost',
port=3306,
user='root',
password='iDontWannaSay',
db='iDontWannaShow',
charset='utf8'
)
并且错误 Traceback 是:
data is :::::b'\xff\x02\x00\xff\x81\x15'....##### I was add near line 1279 which is print("data is :::::%s...."%data[i:i+6])
Traceback (most recent call last):
File "C:\Users\123\Desktop\pymysqldebug.py", line 8, in <module>
charset='utf8'
File "D:\Program Files (x86)\Python\Python35\lib\site-packages\pymysql\__init__.py", line 90, in Connect
return Connection(*args, **kwargs)
File "D:\Program Files (x86)\Python\Python35\lib\site-packages\pymysql\connections.py", line 709, in __init__
self.connect()
File "D:\Program Files (x86)\Python\Python35\lib\site-packages\pymysql\connections.py", line 934, in connect
self._get_server_information()
File "D:\Program Files (x86)\Python\Python35\lib\site-packages\pymysql\connections.py", line 1279, in _get_server_information
self.server_charset = charset_by_id(lang).name
File "D:\Program Files (x86)\Python\Python35\lib\site-packages\pymysql\charset.py", line 39, in by_id
return self._by_id[id]
KeyError: 255
似乎 struct.unpack 方法将 '\xff\' 解析为 255 并分配给 self.server_language
,无论传递的非空字符集参数如何。
这是 MySQL 版本问题吗?(版本8.0.1-dmr
)
【问题讨论】:
【参考方案1】:要扩展上述仅接受链接的答案,请考虑对您当前的pymysql
安装进行以下更改。在 MySQL 8 中,mysql-python API 无法识别可能更新的字符集,因此引发了KeyError
。
要解决此问题,请在此目录中的 pymysql
模块下找到 connectors.py 脚本:
print(pymysql.__file__)
备份原始 connectors.py 脚本。然后合并以下更改。
原文 (第 1268-1269 行)
self.server_language = lang
self.server_charset = charset_by_id(lang).name
替换 (第 1268 - 1272 行)
self.server_language = lang
try:
self.server_charset = charset_by_id(lang).name
except KeyError:
self.server_charset = None
小心在上述行的缩进中包含隐藏的标签。
参考
PyMySQL Git fix #591【讨论】:
如上所述,我们可以升级pymysql模块。pip install --upgrade pymysql
运行升级 pymysql 为我做了这件事,无需手动更改任何内容。
很高兴知道@mothmonsterman。请注意,这个答案已经超过三年了。可能pymysql
现在已经修复了!【参考方案2】:
但是你的变量在哪里?
import pymysql
|
v
myVariable = pymysql.connect(
host='localhost',
port=3306,
user='root',
password='iDontWannaSay',
db='iDontWannaShow',
charset='utf8'
)
【讨论】:
变量是必需的,但不能让它获取字符集,我将第 38 行定位在 charset.py 并返回 self.by_id 的整数索引以避免它 @PayneWaston ...您能写一个您确切所做的答案吗?这条评论或以上甚至 Git 链接都没有清楚地显示问题是如何解决的。 答案不正确,请将其添加为原始问题的评论。以上是关于执行 pymysql.connect 时出现错误 Keyerror 255的主要内容,如果未能解决你的问题,请参考以下文章