How can I use QSqlTableModel and QTableView to insert rows into a table?
-
The CachedTable example (http://doc.qt.nokia.com/4.7/sql-cachedtable.html) shows how QSqlTableModel and QTableView can be used to display a table from a database and to update information in existing rows.
Is it possible to use these classes to insert rows into the displayed table? Or do I have to create a separate SQL INSERT query?