Package com.squareup.sqldelight.sqlite.driver

Types

ConnectionManager
Link copied to clipboard
interface ConnectionManager
JdbcCursor
Link copied to clipboard
open class JdbcCursor(preparedStatement: PreparedStatement, resultSet: ResultSet, onClose: () -> Unit) : SqlCursor
Iterate each row in resultSet and map the columns to Kotlin classes by calling getString, getLong etc.
JdbcDriver
Link copied to clipboard
abstract class JdbcDriver : SqlDriver, ConnectionManager
JdbcPreparedStatement
Link copied to clipboard
open class JdbcPreparedStatement(preparedStatement: PreparedStatement) : SqlPreparedStatement
Binds the parameter to preparedStatement by calling bindString, bindLong or similar.

Functions

asJdbcDriver
Link copied to clipboard
@JvmName(name = fromDataSource)
fun DataSource.asJdbcDriver(): JdbcDriver