QT的QSqlQuery与QSqlQueryModel RowCount只能读到256问题的解决

时间:2020-12-21 10:52:06

在使用QTQSqlQueryModel操作SQLite数据库的时候,通过model->rowCount();只能返回最多256。这个问题需要通过在操作结果前先通过fetchmore()来获取所有的结果,然后获得具体的行数。

         QTQSqlQueryQSqlQueryModel每次最多只能缓存查询结果的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.   }  


本文出自 “做最好的自己” 博客,谢绝转载!