i am using a Cursor to query SQLite database in my android application. But cursor size is limited to 4 MB i suppose. (I have 6 blob columns in a row and each one of them is nearly 1.5 MBs so it is 9MBs in total.)
Is there a way to increase the maximum size of this cursor or should i seperate the columns in a single row in order to lower the size of a single row?
Thank you for your answers.