关于Sqlite3报错:Could not decode to UTF-8 column 'Name' with text...

前端之家收集整理的这篇文章主要介绍了关于Sqlite3报错:Could not decode to UTF-8 column 'Name' with text...前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天在做一个数据库,遇到一个问题,用sqlite3读取数据报错。

错误如下:

关于sqlite3报错:Could not decode to UTF-8 column 'Name' with text...

经过Google后,研究发现,我创建的connection有问题,因为我数据库里存的是UTF-8格式内容。所以,在取这样的字段的时候,需要设置

conn.text_factory = str

这样即可。写下来大家避免以后出现同样问题。

原文链接:https://www.f2er.com/sqlite/203140.html

猜你在找的Sqlite相关文章