Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

android

sqlite

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.

like image 250
user797339 Avatar asked Nov 04 '22 20:11

user797339


1 Answers

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

like image 171
BadSkillz Avatar answered Nov 09 '22 14:11

BadSkillz