Android SQLite: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
Line 3: | Line 3: | ||
The usage of Android SQLite databases is simplified using the SQLiteOpenHelper class | 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 == | == Tutorials == | ||
Line 9: | Line 12: | ||
* [http://www.tutorialspoint.com/android/android_sqlite_database.htm Tutorialspoint], Android & SQLite | * [http://www.tutorialspoint.com/android/android_sqlite_database.htm Tutorialspoint], Android & SQLite | ||
== Q&A == | |||
<span class="editsection">[[#content|top]]</span> | |||
* [http://stackoverflow.com/questions/9109438/how-to-use-an-existing-database-with-an-android-application StackOverflow], How to use an existing database in Android. | * [http://stackoverflow.com/questions/9109438/how-to-use-an-existing-database-with-an-android-application StackOverflow], How to use an existing database in Android. | ||
== Examples == | |||
<span class="editsection">[[#content|top]]</span> | |||
* [http://www.perfectapk.com/sqliteopenhelper-example.html Perfect APK], SQLiteOpenHelper Example. | |||
== See also == | == See also == |
Revision as of 12:36, 9 April 2015
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.