Working with QSqlTableModel
Learn how we use the QSqlTableModel to create GUI applications.
We'll cover the following...
Creating the application
Now, a GUI for visualizing the database's contents will be developed. The QSqlTableModel
class, is an interface that is useful for reading and writing database records when you only need to use a single table without linkages to other databases. We will ...