使用 CP1250 插入 pymssql
最后,我询问有关读取的问题,当我在连接字符串的字符集中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像 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