Package-level declarations

Types

Link copied to clipboard
class SQLite3Driver : SqlDriver
Link copied to clipboard
open class SQLite3Exception(message: String) : Exception

Exception of SQLite3Driver. Usually this class is directly returned in case of error within driver itself.

Link copied to clipboard

Exception that occurs from within SQLite 3 Node.js module.

Functions

Link copied to clipboard
suspend fun <T : Any> Query<T>.executeAsFlow(): Flow<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 <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? = null,     schema: SqlSchema<QueryResult.AsyncValue<Unit>>? = null): SQLite3Driver