I am using sqlite DB in my android application.(created the db in sdcard)
is this possible to insert single large file into db.(say around 20-30mb)
if not what is the alternative solution.and what is the size limitation to insert
I am using sqlite DB in my android application.(created the db in sdcard)
is this possible to insert single large file into db.(say around 20-30mb)
if not what is the alternative solution.and what is the size limitation to insert
SQLite can handle large amount of data, the problem here is the device's limits. If you are going to store more than 10MB , you should consider saving that data in an external server and access it via the Internet. If you are building an application that use large amount of data, usually the application don't use all data all the time, so you can save in cache (in a local database) . if your db file is limited in size less than 10 MB you can encrypt them and put it in the sdcard