Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
class JdbcCursor(val resultSet: ResultSet) : SqlCursor

Iterate each row in resultSet and map the columns to Kotlin classes by calling getString, getLong etc. Use next to retrieve the next row and close to close the connection.

Link copied to clipboard
Link copied to clipboard

Binds the parameter to preparedStatement by calling bindString, bindLong or similar. After binding, execute executes the query without a result, while executeQuery returns JdbcCursor.

Functions

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