摘要: def dict_fetchall(cursor): # 将查询多行数据 转为 json列表 # return all rows from a cursor as a dict list columns = [col[0] for col in cursor.description] return 阅读全文
posted @ 2022-07-20 16:39 pearlcity 阅读(41) 评论(0) 推荐(0) 编辑