gpt4 book ai didi

Mysql-Python-Connector 从存储过程中的 select 语句中获取列名

转载 作者:行者123 更新时间:2023-11-29 02:52:41 27 4
gpt4 key购买 nike

我有一个存储过程,其中包含多个简化如下的语句

create temp table...; 
update temp table...;
....
select * from temp table; #last statement

我有以下 Python 代码来从 SP 获取返回结果。我需要列名,以便将结果转换为 JSON 格式。但是, cursor.description 没有返回任何我期望的内容。请指教!! Mysql5.7,mysql-python-connector 2.x by Oracle,python 3.5

cursor.callproc(proc, args)
columns = cursor.description
print(columns) #returns [('@_sp_get_toc_arg1', 8, None, None, None, None, 1, 128)]

for result in cursor.stored_results():
return result.fetchall()

最佳答案

cursor.stored_results() 返回的迭代器生成游标,您需要检查这些游标的描述以获取列名,而不是初始游标:

for result in cursor.stored_results():
print(result.description)
return result.fetchall()

关于Mysql-Python-Connector 从存储过程中的 select 语句中获取列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34030020/

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