python连接sqlserver数据库报错,是什么原因
发布网友
发布时间:2022-04-28 11:26
我来回答
共1个回答
热心网友
时间:2022-04-10 14:55
要看你的数据库里存的是什么格式的,如果是unicode的话:
sql="select * from t.branch where name='河南'".decode('utf8')
如果是gb系列编码的话:
sql="select * from t.branch where name='河南'".decode('utf8').encode('gb18030')