当前位置:网站首页>SQLServer连接数据库读取中文乱码问题解决
SQLServer连接数据库读取中文乱码问题解决
2022-07-06 00:06:00 【瘾ิۣۖิۣۖิۣۖิꦿ】
在一个大二的数据库课设,在一个月黑风高的晚上,我猛然发现,在pycharm终端出现了我从未见过的字符,原来是读取的中文显示出现了乱码,然后一顿操作猛如虎,开始疯狂百度,在两个小时后,我得到了问题的原因。
因为SQLServer不支持UTF-8,当使用varchar保存汉字时,会出现乱码,需要转换。
cast函数
我们将需要选择展示的列,利用cast函数,用nvarchar保存汉字,就可以解决中文乱码的问题
select cast(xx as nvarchar(20)) xxxx …
def showall(self):
self.model.removeRows(0, self.model.rowCount())
sql = "SELECT OwnerId,cast(OwnerName as nvarchar(20)),cast(OwnerSex as nvarchar(20)),OwnerBir,OwnerPhone,OwnerIdent,BuildId,RoomId FROM Owner"
self.cur.execute(sql)
rows = self.cur.fetchall()
print(rows)
self.addItem(rows)
边栏推荐
- Global and Chinese markets of universal milling machines 2022-2028: Research Report on technology, participants, trends, market size and share
- MySql——CRUD
- 提升工作效率工具:SQL批量生成工具思想
- FFMPEG关键结构体——AVFrame
- shardingsphere源码解析
- [Luogu cf487e] tours (square tree) (tree chain dissection) (line segment tree)
- [designmode] adapter pattern
- QT -- thread
- The use of El cascader and the solution of error reporting
- Use mapper: --- tkmapper
猜你喜欢
C reflection and type
认识提取与显示梅尔谱图的小实验(观察不同y_axis和x_axis的区别)
总结了 800多个 Kubectl 别名,再也不怕记不住命令了!
How to rotate the synchronized / refreshed icon (EL icon refresh)
Huawei equipment is configured with OSPF and BFD linkage
Gd32f4xx UIP protocol stack migration record
MySql——CRUD
Learn PWN from CTF wiki - ret2libc1
XML configuration file (DTD detailed explanation)
云呐|固定资产管理系统主要操作流程有哪些
随机推荐
7.5模拟赛总结
FFMPEG关键结构体——AVCodecContext
Mathematical model Lotka Volterra
多普勒效應(多普勒頻移)
VBA fast switching sheet
Redis high availability - master-slave replication, sentinel mode, cluster
传输层协议------UDP协议
FFMPEG关键结构体——AVFrame
剖面测量之提取剖面数据
Hardware and interface learning summary
XML配置文件(DTD详细讲解)
总结了 800多个 Kubectl 别名,再也不怕记不住命令了!
CAS and synchronized knowledge
【DesignMode】适配器模式(adapter pattern)
Zhuan: in the future, such an organization can withstand the risks
转:未来,这样的组织才能扛住风险
Global and Chinese markets of universal milling machines 2022-2028: Research Report on technology, participants, trends, market size and share
Wechat applet -- wxml template syntax (with notes)
mysql-全局锁和表锁
数据库遇到的问题