SQLDatabase
@ThreadSafe
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)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun insert(table: String, values: IContentValues, conflictAlgorithm: IConflictAlgorithm): Long
Link copied to clipboard
Link copied to clipboard
fun readFromBlob(name: String, table: String, column: String, row: Long, offset: Int, limit: Int, stream: OutputStream)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> transact(transactionMode: SQLiteTransactionMode = SQLiteTransactionMode.EXCLUSIVE, block: SQLDatabase.() -> 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
fun writeToBlob(name: String, table: String, column: String, row: Long, offset: Int, stream: InputStream)
Link copied to clipboard