码迷,mamicode.com
首页 > 数据库 > 详细

mysql中将数据库返回结果转为dict

时间:2020-04-23 18:45:53      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:root   test   sel   xxx   font   pass   dict   ORC   passwd   

结果:(1, ‘11‘)

self.conn = pymysql.connect(
host=‘xxx‘,
port=3806,
user=‘root‘,
passwd=str(123456),
db = ‘test‘,
charset = "utf8"

)

结果:{‘id‘: 1, ‘name‘: ‘11‘}

self.conn = pymysql.connect(

    host=‘xxx‘,
port=3806,
user=‘root‘,
passwd=str(123456),
db = ‘test‘,
charset = "utf8",
cursorclass=pymysql.cursors.DictCursor

)

mysql中将数据库返回结果转为dict

标签:root   test   sel   xxx   font   pass   dict   ORC   passwd   

原文地址:https://www.cnblogs.com/gaoxialian/p/12762518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!