Package-level declarations

Types

Link copied to clipboard
class SQLite3Driver : SqlDriver
Link copied to clipboard
class SQLite3Exception(val error: Any?) : Exception

Functions

Link copied to clipboard
suspend fun <T : Any> Query<T>.executeSuspendingAsList(): List<T>

Workaround suspending method to use with SQLite3 async driver. Use this instead of non-async method Query.executeAsList.

Link copied to clipboard
suspend fun initSqlite3SqlDriver(filename: String, mode: Number = OPEN_CREATE.toInt() or OPEN_READWRITE.toInt(), schema: SqlSchema? = null): SQLite3Driver