Pyodbc utf-8 绑定参数错误 使用 FreeTDS 和 unixODBC
FreeTDS 版本 0.82
unixODBC 版本 2.3.0
pyodbc 版本 2.1.8
freetds.conf:
tds version = 7.0
client charset = UTF-8
在 odbc.ini 中使用 Servername (出于某种疯狂的原因,这对让 unixODBC 识别 freetds 中的客户端字符集产生了影响)
我能够拉utf8 数据正确,并且可以使用内联字符串进行更新,即:
UPDATE table
SET col = N'私はトカイ大好き'
WHERE id = 182333369
但
text = u'私はトカイ大好き'
cursor.execute("""
UPDATE table
SET column = ?
WHERE id = 182333369
""", text)
失败:
pyodbc.Error: ('HY004', '[HY004] [FreeTDS][SQL Server]
Invalid data type (0) (SQLBindParameter)')
如果我添加:
text = text.encode('utf-8')
我收到以下错误:
pyodbc.ProgrammingError: ('42000', '[42000] [FreeTDS][SQL Server]传入的表格数据流 (TDS) 协议流不正确。流意外结束。(4002) (SQLExecDirectW)')
有关的任何想法事情哪里出了岔子?
FreeTDS version 0.82
unixODBC version 2.3.0
pyodbc version 2.1.8
freetds.conf:
tds version = 7.0
client charset = UTF-8
using Servername in the odbc.ini (which for some crazed reason made a difference in getting unixODBC to recognize the client charset in freetds)
I'm able to pull utf8 data correctly and can update with the string inline ie:
UPDATE table
SET col = N'私はトカイ大好き'
WHERE id = 182333369
But
text = u'私はトカイ大好き'
cursor.execute("""
UPDATE table
SET column = ?
WHERE id = 182333369
""", text)
Fails with:
pyodbc.Error: ('HY004', '[HY004] [FreeTDS][SQL Server]
Invalid data type (0) (SQLBindParameter)')
If I add:
text = text.encode('utf-8')
I get the following error:
pyodbc.ProgrammingError: ('42000', '[42000] [FreeTDS][SQL Server]The incoming tabular data stream (TDS) protocol stream is incorrect. The stream ended unexpectedly. (4002) (SQLExecDirectW)')
Any ideas as to where things have gone astray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pyodbc 3.0.x 中重新设计了 Unicode 支持。尝试使用最新的源进行测试(3.0.2-beta02等)
Unicode support was reworked in pyodbc 3.0.x. Try testing with the latest source (3.0.2-beta02, etc.)