用python scrapy给数据库中插入数据出现异常SQl值为空

2025-04-05 10:32:08
推荐回答(1个)
回答1:

要看你的数据库里存的是什么格式的,如果是unicode的话: sql="select * from t.branch where name='河南'".decode('utf8') 如果是gb系列编码的话: sql="select * from t.branch where name='河南'".decode('utf8').encode('gb18030')