SQLDatabase

@ThreadSafe
class SQLDatabase(    val path: String,     sqlite: SQLite,     configuration: DatabaseConfiguration,     key: ByteArray?,     random: IRandom = CommonThreadLocalRandom) : SharedCloseable, IDatabase

The use of ThreadLocal underpins SQLDatabase's thread-safety.

A thread can acquire at most one connection session per database instance. Sessions hold at most one connection at any given time, and exclusively. Sessions control all access to a database's connections and each session is thread-bound. This prevents two threads from ever sharing a single connection.

This is the same strategy Google employs in the Android SDK.

See also

Constructors

Link copied to clipboard
constructor(path: String, sqlite: SQLite, configuration: DatabaseConfiguration, key: ByteArray?, random: IRandom = CommonThreadLocalRandom)

Properties

Link copied to clipboard
open override val inTransaction: Boolean
Link copied to clipboard
Link copied to clipboard
open override var version: Int

Functions

Link copied to clipboard
fun batch(sql: String, bindArgs: Sequence<Array<out Any?>>): Int
Link copied to clipboard
open override fun beginExclusiveTransaction()
Link copied to clipboard
open override fun beginImmediateTransaction()
Link copied to clipboard
abstract override fun close()
Link copied to clipboard
open override fun compileStatement(sql: String, bindArgs: Array<out Any?>?): ISQLStatement
Link copied to clipboard
open override fun delete(table: String, whereClause: String, whereArgs: Array<out Any?>): Int
Link copied to clipboard
open override fun endTransaction()
Link copied to clipboard
open override fun exec(sql: String, bindArgs: Array<out Any?>?)
Link copied to clipboard
fun <T> execute(readOnly: Boolean, block: SQLDatabase.() -> T): T
Link copied to clipboard
open override fun insert(table: String, values: IContentValues, conflictAlgorithm: IConflictAlgorithm): Long
Link copied to clipboard
abstract fun isOpen(): Boolean
Link copied to clipboard
fun pragma(key: String): String
fun pragma(key: String, value: Any): String?
Link copied to clipboard
open override fun query(query: ISQLQuery): ICursor
open override fun query(sql: String, selectionArgs: Array<out Any?>): ICursor
open override fun query(    distinct: Boolean,     table: String,     columns: Array<out String>,     selection: String,     selectionArgs: Array<out Any?>,     groupBy: String?,     having: String?,     orderBy: String?,     limit: Int?): ICursor
Link copied to clipboard
fun readFromBlob(name: String, table: String, column: String, row: Long, offset: Int, limit: Int, stream: OutputStream)
Link copied to clipboard
fun releaseMemory(priority: Priority)
Link copied to clipboard
open override fun setTransactionSuccessful()
Link copied to clipboard
fun sizeOfBlob(name: String, table: String, column: String, row: Long): Int
Link copied to clipboard
fun <T> transact(transactionMode: SQLiteTransactionMode = SQLiteTransactionMode.EXCLUSIVE, block: SQLDatabase.() -> T): T
fun <D, T> transact(database: D, transactionMode: SQLiteTransactionMode = SQLiteTransactionMode.EXCLUSIVE, block: D.() -> T): T
Link copied to clipboard
open override fun update(    table: String,     values: IContentValues,     whereClause: String,     whereArgs: Array<out Any?>,     conflictAlgorithm: IConflictAlgorithm): Int
Link copied to clipboard
open override fun upsert(table: String, values: IContentValues, columns: Array<out String>, update: String): Long
Link copied to clipboard
fun writeToBlob(name: String, table: String, column: String, row: Long, offset: Int, stream: InputStream)
Link copied to clipboard
open override fun yieldTransaction(): Boolean
open override fun yieldTransaction(pauseMillis: Long): Boolean