Tagged Questions
0
votes
0answers
42 views
Pyside - Updating multiple QSqlTableModels locks database
I have a Pyside (Qt) application that displays two QSqlTableModels. These models contain data from two different tables in an Sqlite database.
self.db = QtSql.QSqlDatabase.addDatabase("QSQLITE")
...
0
votes
0answers
199 views
PyQT designer gui populated with sqllite database elements
I'm learning PyQT by myself by trying to write some small programs, this time i'm trying to write a small database program: 3 buttons (prev., next, save) and only two fields saved on a small database. ...
1
vote
1answer
662 views
PyQt4 Selected Item Text in QTableView delayed by one click
I'm using a QTableView to display contents of a QSqlTableModel along with using a QSortFilterProxyModel to filter the records. In the following code I've managed to get the selected text to be ...
1
vote
1answer
329 views
Sort by Multiple Columns in PyQt Model
I want to use the PyQt equivalent of the following SQL statement in my model/view-based PyQt application:
SELECT * FROM table ORDER BY foo, bar
How do I sort by multiple columns in a ...