PyQt4:我的数据库显示空单元格

时间:2010-06-08 12:56:01

标签: python qt qt4 pyqt4 qt4.6

我使用pyqt4框架为数据库表单做一些显示。不幸的是,我试图按姓氏过滤和显示我的数据库时遇到了麻烦。假设数据库连接有效。还假设我的tupleHeader中有正确数量的项目,因为我对其他方法使用相同的initializeModel方法(如下面描述的search()函数,并且它工作正常。

我调用display()函数并且它工作得非常好,但是当从sourceModel创建proxyModel并尝试使用我的搜索功能显示proxyModel时,我显示了空单元格。当我限制我的搜索以便它过滤我的数据库的一半时,它会显示许多单元格(因此大部分单元都在工作)。但它不会显示数据库本身的任何内容。

以下是我的一些代码:

from PyQt4 import QtGui, QtCore, QtSql

self.caseSensitivity = QtCore.Qt.CaseInsensitive
self.syntax = QtCore.QRegExp.FixedString

def initializeModel(self, model):
    model.setTable(self.table)
    #model.setEditStrategy(QtSql.QSqlTableModel.OnManualSubmit)
    b = 0
    for a in self.tupleHeader:
        model.setHeaderData(b, QtCore.Qt.Horizontal, QtGui.qApp.tr(a))
        b += 1
    model.select()


def display(self):
    '''reads all row data and displays it on a tableview'''
    self.connectdb(self.db, self.localhost, self.dbname, self.username, self.password)

    model = QtSql.QSqlTableModel()
    self.initializeModel(model)
    self.view.setModel(model)

    self.disconnectdb(self.db)


def search(self, searchQuery):
    '''queries database data, filters it, and displays it on a tableview'''      
    sourceModel = QtSql.QSqlTableModel()
    proxyModel = QtGui.QSortFilterProxyModel()

    self.initializeModel(sourceModel)
    proxyModel.setSourceModel(sourceModel) # allows to edit proxyModel without changing underying model

    #searchQuery contains the last name that I am filtering with
    regExp = QtCore.QRegExp(searchQuery, self.caseSensitivity, self.syntax)
    proxyModel.setFilterRegExp(regExp)
    proxyModel.setFilterKeyColumn(2) # this column holds the last names

     # self.view contains the table itemview my application uses to display the database
    self.view.setModel(proxyModel)
编辑:我对保留这段代码不感兴趣,我只是想知道为什么它允许表格显示表格内容而不是一堆空单元格

print self.proxyModel.filterAcceptsRow(2, self.sourceModel)

另外,如果你在最后一个语句(self.view.setModel(proxyModel))之后放入它,它将显示该表,即使它确实发送了一个错误:

print self.proxyModel.filterAcceptsRow(2,self.sourceModel) TypeError:QSortFilterProxyModel.filterAcceptsRow(int,QModelIndex):参数2具有意外类型'QSqlTableModel'

无论参数是什么或者我是否使用filterAcceptsRow ro filterAcceptsColumn,它都会显示该表。这会缩小问题范围吗?

感谢您花时间搜索此编码错误/错误,以及快乐狩猎!

1 个答案:

答案 0 :(得分:0)

虽然我找不到问题的解决方案,但它解决了问题。我不确定,但我认为正是这段代码片段使其发挥作用。

self.dbmanip = CoreDB(self.userTableView, self.table)

这是放在Qt4 Designer创建的SetupUi()方法中。我认为包含TableView的dbmanip丢失了来自proxyModel的信息,或者(更有可能),我可能在proxyModel和原始Model(创建了proxyModel)之间引用了错误的表,然后无法显示,因为它从一个表调用单元结构,从另一个表调用实际信息。

但这些都是猜测。问题仍然存在。