修复查询数据库中结果不能编码到UTF-8的问题

This commit is contained in:
daimiaopeng 2023-12-06 10:40:25 +08:00
parent 4a357dca24
commit 0400644aaa

View File

@ -13,6 +13,7 @@ def merge_databases(source_paths, target_path):
if not os.path.exists(source_path): if not os.path.exists(source_path):
break break
db = sqlite3.connect(source_path) db = sqlite3.connect(source_path)
db.text_factory = bytes
cursor = db.cursor() cursor = db.cursor()
sql = ''' sql = '''
SELECT TalkerId,MsgsvrID,Type,SubType,IsSender,CreateTime,Sequence,StrTalker,StrContent,DisplayContent,BytesExtra SELECT TalkerId,MsgsvrID,Type,SubType,IsSender,CreateTime,Sequence,StrTalker,StrContent,DisplayContent,BytesExtra