ChiHam
ChiHam

Reputation: 85

Android APP with a local database

If building an app for android tablet, how big can the local database be ?

Do you this it could handle a database of 5 million registries (Read Only) ?

Upvotes: 0

Views: 48

Answers (1)

Jorgesys
Jorgesys

Reputation: 126455

Like Distwo describes, the size in a Sqlite Database depends on what you put into the database not in the number of entries.

Check this document about Sqlite limits http://www.sqlite.org/limits.html

Upvotes: 2

Related Questions