sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.
不晓得python为啥那么多的编码问题,哎,这次使用python内置数据库sqlite存储中文出现错误
解决方案:直接加buffer,将中文转换成buffer类型,主要是为了避免无法正常编译中文而忽略
buffer(name)