user797339
user797339

Reputation: 51

Limitations of SQLITE on Android - 25 tables with 15 column each and 10k rows per table

I am trying to build an application on a Tablet. The application is going to be data intensive. Does SQLite support 25 tables with 15 column each and about 10k rows per table?

It would be great if someone could point out the limitations. I have been to the other links posted to SQlite.org, but they were not of much help.

Upvotes: 5

Views: 3462

Answers (1)

BadSkillz
BadSkillz

Reputation: 2003

No, there is no limit set on the size of a database as long as it fits in the memory. However there are some known issues, read up on those here

Upvotes: 2

Related Questions