0

I have an SQLite database which is 40mb uncompressed. It will only be read.

I can condense and split this database into a few text files, each less than 1mb, bundle these into an apk, and generate the database with this say by running a script on the device the first time my app is run.

Are there any restrictions on the size of the resulting generated SQLite database if it goes to external storage?

Vague question - if there are no such restrictions, is this likely to be done in a "short" time on "most" devices?

Ken
  • 30,811
  • 34
  • 116
  • 155

1 Answers1

0

Belong what is said in this topic : Is there a size limit of SQLite database on Android?

It seems to be 10 to 30 mb for your database.

But, you should find more information about SQLite limits by following this link : http://www.sqlite.org/limits.html

Community
  • 1
  • 1
Jeremy D
  • 4,787
  • 1
  • 31
  • 38