Force Update QTableView + QSqlTableModel in PyQt
I have a QTableView which displays data from a QSqlTableModel. I want my model to check for changes when a user hits a "refresh" button but I can't find a way to update the data. I tried the reset() and update() methods on开发者_如何学Python the model without any result.
Is it possible to "re-read" from the database and update the model? How?
As you dont state what you canged in your model, ill assume the simplest form of change (changed data).
For me model.select() works to update the data in the model and force the View to update itself.
精彩评论