are there any restrictions for Android SQLite databases? I mean this – is it possible to have databases on SD card? Any restriction of max number of tables per database? Restriction of max size of a DB, or any other?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Citing by http://developer.android.com/guide/topics/data/data-storage.html#db:
Android provides full support for SQLite databases
Additional note:
“Android does not impose any limitations beyond the standard SQLite concepts. We do recommend including an autoincrement value key field that can be used as a unique ID to quickly find a record. This is not required for private data, but if you implement a content provider, you must include a unique ID using the BaseColumns._ID constant.”
So just be wary of standard SQLite limitations.