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

Posted 鱼的记忆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中将数据库返回结果转为dict相关的知识,希望对你有一定的参考价值。

结果:(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的主要内容,如果未能解决你的问题,请参考以下文章

通过 json.loads 将 Python dict 转为 JSON:

如何从 MySQL 查询中将 json 返回到 GraphQL?

PHP如何将SQL查询结果转为多维数组,并按查询行输出

在 Perl 中将 MySQL 结果作为哈希表返回

python 读取excel 数据,并转为dict

为啥此代码片段返回意外结果?