gpt4 book ai didi

python - 使用 Python 执行 MySQL 查询

转载 作者:行者123 更新时间:2023-11-29 12:19:41 24 4
gpt4 key购买 nike

我正在尝试运行一些 MySQL 查询并在我的 Python 程序中输出结果。我创建了这个被调用的函数并且光标被传递。但是,我遇到了一个问题,运行以下代码将始终返回 None/Nothing。

这是我所拥有的:

def showInformation(cursor):
number_rows = 'SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = "DB"'
testing = cursor.execute(number_rows)

print(testing)

当使用cursor对象本身时,我没有遇到任何问题:

for row in cursor:
print(row)

最佳答案

我想你需要:

print(cursor.fetchone())

因为您只返回一个计数,所以您期望一行。

调用 execute 不应返回任何内容,除非根据 mysql documentation 指定 multi=True 。程序员只能像您一样迭代cursor,或者调用fetchone来检索一行,或者调用fetchall来检索所有行,或者调用 >fetchmany 检索一些行。

关于python - 使用 Python 执行 MySQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29215599/

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