Best reporting tools with QTableView and other datas
-
@Thank-You said in Best reporting tools with QTableView and other datas:
How can I report or print the data that is in QTableView
Use
qDebug()on the data in your model. If you don't have direct access to the model class for some reason - calldata()in a loop for each row and column in your model.or use the sql query to load database in the application.
Huh? What does that even mean? You don't use SQL queries to load databases. It is a big topic, please take a look at documentation to get started.
There aren't much documentation about these tools.
There's plenty but you need to search wisely or ask good questions in the forum. Otherwise it's impossible to help you. If there is a specific problem you are having - ask around. If not, an you just don't know where to start - say it, somebody will try to help. Don't expect it will be a walk in the park though. Data models, views and databases are all broad and complicated topics.