Sql Driver
Functions
Link copied to clipboard
Link copied to clipboard
The currently open Transacter.Transaction on the database.
Link copied to clipboard
abstract fun execute(identifier: Int?, sql: String, parameters: Int, binders: SqlPreparedStatement.() -> Unit? = null): QueryResult<Long>
Execute a SQL statement.
Link copied to clipboard
abstract fun <R> executeQuery(identifier: Int?, sql: String, mapper: (SqlCursor) -> R, parameters: Int, binders: SqlPreparedStatement.() -> Unit? = null): QueryResult<R>
Execute a SQL statement and evaluate its result set using the given block.
Link copied to clipboard
Start a new Transacter.Transaction on the database.
Link copied to clipboard
Link copied to clipboard