how to load more than 1 MB data from sqlite db to android cursor? how to load more than 1 MB data from sqlite db to android cursor? sqlite sqlite

how to load more than 1 MB data from sqlite db to android cursor?


Don't store blobs of 500KB in your database. Store identifiers in your database and put the blobs as files onto the storage. If you use MODE_PRIVATE, they will not be accessible by other processes.