LogSqliteDriver

class LogSqliteDriver(sqlDriver: SqlDriver, logger: (String) -> Unit) : SqlDriver

Functions

close
Link copied to clipboard
common
open override fun close()
Close any resources backed by this object.
currentTransaction
Link copied to clipboard
common
open override fun currentTransaction(): Transacter.Transaction?
The currently open Transacter.Transaction on the database.
execute
Link copied to clipboard
common
open override fun execute(identifier: Int?, sql: String, parameters: Int, binders: SqlPreparedStatement.() -> Unit?)
Execute a SQL statement.
executeQuery
Link copied to clipboard
common
open override fun executeQuery(identifier: Int?, sql: String, parameters: Int, binders: SqlPreparedStatement.() -> Unit?): SqlCursor
Execute a SQL statement and return a SqlCursor that iterates the result set.
newTransaction
Link copied to clipboard
common
open override fun newTransaction(): Transacter.Transaction
Start a new Transacter.Transaction on the database.