I'am using an SQLite database and I regularly get runtime errors I can't find the origin of. After a query, I use moveToFirst
to point on the first record retrieved and this sometimes triggers an android.database.CursorWindowAllocationException
exception. Added to this exception is the following sentence : "Cursor window allocation of 2048kb failed.# open Cursors=736 (#cursors opendby this proc=736)".
In the Android documentation, I haven't found anything related to this exception yet. Does anyone know it's cause and a way to avoid it?