Summary
There are a variety of different ways to store and manage application data on the Android platform. The method you use depends on what kind of data you need to store. Application-specific SQLite databases are secure and efficient mechanisms for structured data storage. You now know how to design persistent data-access mechanisms in your Android application, and you also learned how to bind data from various sources to user interface controls, such as ListView objects.
References and More Information
Android Dev Guide: “Data Storage”:
http://d.android.com/guide/topics/data/data-storage.html
Android SDK Documentation for the android.database.sqlite package:
http://d.android.com/reference/android/database/sqlite/package-summary.html
SQLite website:
http://www.sqlite.org/index.html
SQLzoo.net: