mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
2.6 KiB
2.6 KiB
SQLite in Android
Kotlin SQLite Documentation NoSQL DB Realm Docs
Database Helper
Create database in memory and its tables.
class DatabaseHelper(
context: Context?,
name: String?,
factory: SQLiteDatabase.CursorFactory?,
version: Int
) : SQLiteOpenHelper(context, name, factory, version) { // super constructor?
// called on db creation if it does not exists (app installation)
override fun onCreate() {
sqLiteDatabase?.execSQL("CREATE TABLE ...") // create table
}
override fun onUpgrade(sqLiteDatabase: SQLiteDatabase?, ...) {
// table update logic
}
}
AppSingleton
Make data persistent.
class AppSingleton constructor(context: Context) {
var database: SQLiteDatabase? = null // point to database file in memory
companion object {
@Volatile
private var INSTANCE: AppSingleton? = null
// synchronized makes sure that all instances of the singleton are actually the only existing one
fun getInstance(context: Context) = INSTANCE ?: synchronized(this) {
INSTANCE ?: Singleton(context).also {
INSTANCE = it
}
}
}
// called to create DB in device memory
fun openDatabase(context: Context?) {
var databaseHelper = DatabaseHelper(context, "AppDB_Name.sqlite", null, version) {
database = databaseHelper.writeDatabase //?
}
}
}
Activity
override fun onCreate() {
// either creates or reads DB
AppSingleton.getInstance().openDatabase(this) // context is this
val controller = ModelController()
controller.insert(model) // insert data from object
}
ModelController
Controller to handle data from the objects and interact with the Database
sqLiteDatabase = AppISingleton.getInstance().database // reference to the database from the singleton
contentValues = ContentValues() // dict like structure to insert data in DB
contentValues.put("DB_Column", value) // put data in the structure
// insertion query V1
sqLiteDatabase?.insert("table", null, contentValue)
//insertion query V2
sqLiteDatabase?.rawQuey("INSERT INTO ...")
// returns a Cursor()
val cursor = sqLiteDatabase?.query("table", ArrayOf(columns_to_read), "WHERE ...", "GROUP BY ...", "HAVING ...", "ORDER BY ...")
try {
if (cursor != null) {
while(cursor.moveToNext()) { // loop through cursor data
data = cursor.getString(cursor.getColumnIndex("DB_Column")) // read data from the cursor
}
}
} finally {
cursor?.close()
}