作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只是为了解释这里发生的事情:我有一个搜索函数,它使用用户输入[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/
只是为了解释这里发生的事情:我有一个搜索函数,它使用用户输入[givenLocation]运行MySQL查询。它应该将查询的内容转储到列表框[self.lookuplist]中。我的问题是,目前它只会
我是一名优秀的程序员,十分优秀!