[android-developers] How to use large database (Sqlite more than 100 MB) in android application?

2011-09-27 Thread Sam
Hello , i develop one application in which require sqlite database. database size is verry large approx. 100 Mb. so i have not any idea which way use these database in my application. database is some private contents so not installed in sdcard... 1) Can android app support or store 100 mb

Re: [android-developers] How to use large database (Sqlite more than 100 MB) in android application?

2011-09-27 Thread Mark Murphy
On Tue, Sep 27, 2011 at 6:18 AM, Sam jain@gmail.com wrote: i develop one application in which require sqlite database. database size is verry large approx. 100 Mb. so i have not any idea which way use these database in my application. database is some private contents so not installed in

Re: [android-developers] How to use large database (Sqlite more than 100 MB) in android application?

2011-09-27 Thread lbendlin
There are some hot encryption modules available for SQLite database files, it might be worth looking into these if you can live with the impact on performance. This would also remove your design requirement to place the database file into main memory (which isn't much of a deterrent anyhow as

Re: [android-developers] How to use large database (Sqlite more than 100 MB) in android application?

2011-09-27 Thread Norris.Lin
I suggest you don't use sqlite to store so much data. If you store too much data in the Android's sqlite, then it will cause some unknown error. Maybe you can store your data through the internet. 2011/9/27 Sam jain@gmail.com Hello , i develop one application in which require sqlite