gpt4 book ai didi

python - 在 SQLAlchemy 中以 dict 形式检索查询结果

转载 作者:行者123 更新时间:2023-11-29 15:31:54 49 4
gpt4 key购买 nike

我正在使用 Flask SQLAlchemy,并且我有以下代码通过来自 MySQL 数据库的原始 SQL 查询从数据库获取用户:

connection = engine.raw_connection()
cursor = connection.cursor()
cursor.execute("SELECT * from User where id=0")
results = cursor.fetchall()

results 变量是一个元组,我希望它的类型为 dict()。有没有办法实现这个目标?

当我使用 pymysql 构建数据库连接时,我能够做到

cursor = connection.cursor(pymysql.cursors.DictCursor)

SQLAlchemy中有类似的东西吗?

注意:我想要进行此更改的原因是为了摆脱在我的代码中使用 pymysql,而只使用 SQLAlcehmy 功能,即我不想在我的代码中的任何地方都有“import pymysql”。

最佳答案

results is a tuple and I want it to be of type dict()

更新了 SQLAlchemy 1.4 的答案:

版本 1.4 已弃用旧的 engine.execute() 模式,并更改了 .execute() 内部运行的方式。 .execute() 现在返回 CursorResult带有 .mappings() 的对象方法:

import sqlalchemy as sa

# …

with engine.begin() as conn:
qry = sa.text("SELECT FirstName, LastName FROM clients WHERE ID < 3")
resultset = conn.execute(qry)
results_as_dict = resultset.mappings().all()
pprint(results_as_dict)
"""
[{'FirstName': 'Gord', 'LastName': 'Thompson'},
{'FirstName': 'Bob', 'LastName': 'Loblaw'}]
"""
<小时/>

(之前针对 SQLAlchemy 1.3 的回答)

如果您使用 engine.execute 而不是 raw_connection(),SQLAlchemy 已经为您完成了此操作。使用engine.executefetchone将返回一个SQLAlchemy Row对象,fetchall将返回一个list Row 对象。 Row 对象可以通过键访问,就像 dict 一样:

sql = "SELECT FirstName, LastName FROM clients WHERE ID = 1"
result = engine.execute(sql).fetchone()
print(type(result)) # <class 'sqlalchemy.engine.result.Row'>
print(result['FirstName']) # Gord

如果您需要一个真正的 dict 对象,那么您只需转换它即可:

my_dict = dict(result)
print(my_dict) # {'FirstName': 'Gord', 'LastName': 'Thompson'}

关于python - 在 SQLAlchemy 中以 dict 形式检索查询结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58658690/

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