使用 CP1250 插入 pymssql

发布于 2025-01-10 19:03:45 字数 612 浏览 0 评论 0原文

最后,我询问有关读取的问题,当我在连接字符串的字符集中使用 CP1250 时,我解决了问题:

conn_insert = pymssql.connect(host='xxx', user='xxx',
                   password='xxx', database='xxx',charset='CP1250')

没关系,我在控制台波兰字符中看到。 但是,插入数据库后:

query = "Update xxx \
            set xxx='"+variable[x]+"',\
            aaa='"+variable[y]+"'\
            where bbb='"+variable[z]+"'" 

 query = "insert into xxx(aaa, bbb, ccc) \
            VALUES ('"+variable[a]+"', '"+variable[b]+"', '"+variable[c]+"')"  

和cursor.execute(上面) 数据库中没有波兰语字符。

我需要做什么?

in last I ask about read, and I solfe problem when I use CP1250 in charset in connection string:

conn_insert = pymssql.connect(host='xxx', user='xxx',
                   password='xxx', database='xxx',charset='CP1250')

And it's ok, i see in console polish chars.
But, after insert to database:

query = "Update xxx \
            set xxx='"+variable[x]+"',\
            aaa='"+variable[y]+"'\
            where bbb='"+variable[z]+"'" 

or

 query = "insert into xxx(aaa, bbb, ccc) \
            VALUES ('"+variable[a]+"', '"+variable[b]+"', '"+variable[c]+"')"  

and cursor.execute(above)
there are not polish chars in DB.

What I need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

逆蝶 2025-01-17 19:03:45

就像 Panagiotis Kanavos 上面写的那样,我不知道为什么我使用硬编码 cadepage XD 我在一些教程中看到了这一点,并且不介意;)这样做;)

当我删除它时,一切都好;)谢谢

Like Panagiotis Kanavos write above, I don't known, why i use hardcoding cadepage XD I see this in some tutorial, and witout mind ;) do in this way ;)

When I remove this, all it's allright ;) THANKS

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