SQLite Unit 2 Answer BCU
SQLite Unit 2 Answer BCU
SQLite Topic
SQLiteOpenHelper is an abstract class that helps manage database creation and version management.
Key Methods:
- onCreate(SQLiteDatabase db): Called when the database is created for the first time.
- onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion): Called when database version changes.
Example:
onCreate(db);