class LogSqliteDriver : SqlDriver
LogSqliteDriver(sqlDriver: SqlDriver, logger: (String) -> Unit) |
fun close(): Unit
Close any resources backed by this object. |
|
fun currentTransaction(): Transaction?
The currently open Transacter.Transaction on the database. |
|
fun execute(identifier: Int?, sql: String, parameters: Int, binders: SqlPreparedStatement.() -> Unit): Unit
Execute a SQL statement. |
|
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. |
|
fun newTransaction(): Transaction
Start a new Transacter.Transaction on the database. |