gpt4 book ai didi

Python - 将输出作为字典返回 - MySQL

转载 作者:行者123 更新时间:2023-12-03 22:58:22 24 4
gpt4 key购买 nike

我编写了一个类来处理使用外部模块连接的 mysql,但是当我获取数据时,我希望它返回如下:

{ 'id': '1', 'username': 'Test'}

它目前已返回:
(1, u'Test')

我使用的代码是:
def executeQuery(self, query):
if(self.mysqlSuccess):
cursor = self.cnx.cursor()
cursor.execute(query)
for row in cursor:
print row
executeQuery('SELECT * FROM `users`')

最佳答案

当你定义光标时,我找到了我的问题的答案,你这样做

cursor = db.cursor(dictionary=True)

我使用的 mysql 包是 mysql.connector

关于Python - 将输出作为字典返回 - MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31589409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com