Creating Data-Aware Forms¶
Using the SQL models described above, the contents of a database can be presented to other model/view components. For some applications, it is sufficient to present this data using a standard item view, such as
QTableView
. However, users of record-based applications often require a form-based user interface in which data from a specific row or column in a database table is used to populate editor widgets on a form.Such data-aware forms can be created with the
QDataWidgetMapper
class, a generic model/view component that is used to map data from a model to specific widgets in a user interface.
QDataWidgetMapper
operates on a specific database table, mapping items in the table on a row-by-row or column-by-column basis. As a result, usingQDataWidgetMapper
with an SQL model is as simple as using it with any other table model.The Books example shows how information can be presented for easy access by using
QDataWidgetMapper
and a set of simple input widgets.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.