How To Load More Than 1 Mb Data From Sqlite Db To Android Cursor?
exactly i am trying to load more than 1MB of data from sqlite database to android cursor. At the time of loading it gives following error like 08-04 11:10:15.813: ERROR/CursorWindo
Solution 1:
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.
Post a Comment for "How To Load More Than 1 Mb Data From Sqlite Db To Android Cursor?"