Standard SQLHelper
class StandardSQLHelper(context: Context, name: String, factory: SQLiteDatabase.CursorFactory?, version: Int, errorHandler: DatabaseErrorHandler?, useSharedPreferencesForVersions: Boolean)
Content copied to clipboard
Functions
readable Transaction
Link copied to clipboard
suspend fun <T> readableTransaction(block: suspend SQLiteDatabase.() -> T): T
Content copied to clipboard
writable Transaction
Link copied to clipboard
suspend fun <T> writableTransaction(block: suspend SQLiteDatabase.() -> T): T
Content copied to clipboard
Properties
Extensions
blocking Readable Transaction
Link copied to clipboard
fun <T> StandardSQLHelper.blockingReadableTransaction(block: SQLiteDatabase.() -> T): T
Content copied to clipboard
blocking Writable Transaction
Link copied to clipboard
fun <T> StandardSQLHelper.blockingWritableTransaction(block: SQLiteDatabase.() -> T): T
Content copied to clipboard