Android SQLite
Android uses the simple light Database implementation SQLite. The usage of Android SQLite databases is simplified using the SQLiteOpenHelper class
Introduction
Almost every app needs to store data. On Android there are several options to to do so, one of them is the SQLIte option. The intention of this page is to collect information about this subject.
Tutorials
- Lars Vogel Tutorial Android & SQLite
- Tutorialspoint, Android & SQLite
Q&A
- StackOverflow, How to use an existing database in Android.
Examples
- Perfect APK, SQLiteOpenHelper Example.