gpt4 book ai didi

python - 如何将 MySQL fetchall() 结果迭代到 tinter 列表框和中心结果中

转载 作者:行者123 更新时间:2023-11-29 10:47:45 25 4
gpt4 key购买 nike

只是为了解释这里发生的事情:我有一个搜索函数,它使用用户输入[givenLocation]运行MySQL查询。它应该将查询的内容转储到列表框[self.lookuplist]中。我的问题是,目前它只会转储第一个结果,即使我使用 fetchall() 函数。我是一名自学成才的 python 开发人员,但我无法从其他来源找到任何相关信息。这是我的代码:

def searchL_button(self):

i = 0

givenLocation = self.top3.searchEntry1.get()
searchLookup = ("SELECT Status, Serial, Product_Code, Location FROM Registers WHERE Location = %s")
cursor9.execute(searchLookup, [givenLocation])
locRes = cursor9.fetchall() [i]

for i in locRes:
self.lookupList.insert(END, locRes)

最佳答案

您将变量 locRes 设置为仅包含查询的第一个结果。将最后几行更改为以下内容

locRes = cursor9.fetchall()

for curRes in locRes:
self.lookupList.insert(END, curRes)

关于python - 如何将 MySQL fetchall() 结果迭代到 tinter 列表框和中心结果中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44267517/

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