This commit is contained in:
yumoqing 2025-10-19 16:42:57 +08:00
parent 906073a516
commit 98fe6e2b0e

View File

@ -324,7 +324,7 @@ class SQLor(object):
fields = [i[0].lower() for i in cur.description] fields = [i[0].lower() for i in cur.description]
while True: while True:
rec = await self.fetchone(cur) rec = await self.fetchone(cur)
debug(f'{rec=}, {tpye(rec)}') debug(f'{rec=}, {type(rec)}')
if rec is None: if rec is None:
break break
if isinstance(rec, dict): if isinstance(rec, dict):