Pyodbc utf-8 绑定参数错误 使用 FreeTDS 和 unixODBC

发布于 2024-11-07 21:03:15 字数 894 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如此安好 2024-11-14 21:03:15

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文