Qt 6.11 is out! See what's new in the release
blog
[SOLVED] QTableView
General and Desktop
4
Posts
3
Posters
1.3k
Views
1
Watching
-
Hello all. I have a QTableView and loading records from a SQLite database. Everything has been working fine but now that I have about 1200 records in my database table the QTableView only seems to display 257 records. Does anyone know if there is a max number of rows a QTableView can handle? Thanks in advance.
-
Hi,
Have a look a the canFetchMore function. If have more then a given count of row (i don't remember the number exactly) you can call fetchMore based on the information provided by canFetchMore.
Hope it helps