Android Database Using Sqlite: 1 S.Renukadevi/Ap/Scd/Androiddatabase Using Sqlite June 28, 2021
Android Database Using Sqlite: 1 S.Renukadevi/Ap/Scd/Androiddatabase Using Sqlite June 28, 2021
SQLite
SQLite is a Structure query base database, open source, light weight, no network
access and standalone database. It support embedded relational database
features.
onCreate(SQLiteDatabase sqLiteDatabase)
method is called only once throughout the application lifecycle. It will be called whenever
there is a first call to getReadableDatabase() or getWritableDatabase() function available
in super SQLiteOpenHelper class. So SQLiteOpenHelper class call the onCreate()
method after creating database and instantiate SQLiteDatabase object. Database name
is passed in constructor call.