在使用QT的QSqlQueryModel操作SQLite数据库的时候,通过model->rowCount();只能返回最多256。这个问题需要通过在操作结果前先通过fetchmore()来获取所有的结果,然后获得具体的行数。
QT的QSqlQuery或QSqlQueryModel每次最多只能缓存查询结果的256条。如果查询语句操作的结果超过256条了,也只能返回256。这样就必然会导致在后续操作中的错误。
解决方法如下:
1. while(model->canFetchMore())
2. {
3. model->fetchMore();
4. }
5.
6. for(int i = 0; i < model->rowCount(); i++)
7.
8. {
9.
10. qDebug()<<model->data(model->index(i,0)).toString();
11.
12. }