Hi all
I found a work-around: prefetch the entire table. Obviously, this is only feasible for small database tables (small compared to available memory).
Add the following statement after select()'ing the model (i.e., after line 42 in my example)
Qt Code:
while (model->canFetchMore()) model->fetchMore();To copy to clipboard, switch view to plain text mode
Bookmarks