Skip to content
Joshua Rogers edited this page Dec 28, 2013 · 1 revision
  • SQLite is android's internal database
  • extend SQLiteOpenHelper to manage the database
  • You can specify the name of the database or the path as the name of the database when extending SQLiteOpenHelper
  • call getReadableDatabase or getWritableDatabase to return a database that can execute database commands
  • Don't forget to close cursors and databases

Clone this wiki locally