当前位置: 首页 > 工具软件 > rowy > 使用案例 >

android.database.sqlite.SQLiteBlobTooBigException: Row too big to fit into CursorWindow

谭兴学
2023-12-01

android.database.sqlite.SQLiteBlobTooBigException: Row too big to fit into CursorWindow requiredPos=2, totalRows=3

解决办法:

Cursor cursor = db.query(TABLE, null, "id=?", new String[]{id}, null, null, null);
设置一下CursorWindow的大小即可
CursorWindow cw = new CursorWindow("test", 5000000);
AbstractWindowedCursor ac = (AbstractWindowedCursor) cursor;
ac.setWindow(cw);

有疑问的可以下方留言,相互学习,我是心哥说编程,致力于成为一个编程大牛编程爱好者。 

 类似资料:

相关阅读

相关文章

相关问答