commonMain.app.cash.sqldelight.db.SqlDriver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Multiplatform runtime library to support generated code
The newest version!
/*
* Copyright (C) 2018 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package app.cash.sqldelight.db
import app.cash.sqldelight.Query
import app.cash.sqldelight.Transacter
/**
* Maintains connections to an underlying SQL database and provides APIs for managing transactions
* and executing SQL statements.
*/
interface SqlDriver : Closeable {
/**
* Execute a SQL statement and evaluate its result set using the given block.
*
* @param [identifier] An opaque, unique value that can be used to implement any driver-side
* caching of prepared statements. If [identifier] is null, a fresh statement is required.
* @param [sql] The SQL string to be executed.
* @param [mapper] A lambda which is called with the cursor when the statement is executed
* successfully. The generic result of the lambda is returned to the caller, as soon as the
* mutual exclusion on the database connection ends. The cursor **must not escape** the block
* scope.
* @param [parameters] The number of bindable parameters [sql] contains.
* @param [binders] A lambda which is called before execution to bind any parameters to the SQL
* statement.
*/
fun executeQuery(
identifier: Int?,
sql: String,
mapper: (SqlCursor) -> R,
parameters: Int,
binders: (SqlPreparedStatement.() -> Unit)? = null,
): QueryResult
/**
* Execute a SQL statement.
*
* @param [identifier] An opaque, unique value that can be used to implement any driver-side
* caching of prepared statements. If [identifier] is null, a fresh statement is required.
* @param [sql] The SQL string to be executed.
* @param [parameters] The number of bindable parameters [sql] contains.
* @param [binders] A lambda which is called before execution to bind any parameters to the SQL
* statement.
*
* @return The number of rows updated for an INSERT/DELETE/UPDATE, or 0 for other SQL statements.
*
* NOTE it is up to the specific driver to correctly return the row changes. Notably the SQLJS
* driver does not do this and you should query changes() manually.
*/
fun execute(
identifier: Int?,
sql: String,
parameters: Int,
binders: (SqlPreparedStatement.() -> Unit)? = null,
): QueryResult
/**
* Start a new [Transacter.Transaction] on the database.
*
* It's up to the implementor how this method behaves for different connection/threading patterns.
*/
fun newTransaction(): QueryResult
/**
* The currently open [Transacter.Transaction] on the database.
*
* It's up to the implementor how this method behaves for different connection/threading patterns.
*/
fun currentTransaction(): Transacter.Transaction?
fun addListener(listener: Query.Listener, queryKeys: Array)
fun removeListener(listener: Query.Listener, queryKeys: Array)
fun notifyListeners(queryKeys: Array)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy