vertx / io.vertx.kotlin.sqlclient / io.vertx.sqlclient.SqlConnection

Extensions for io.vertx.sqlclient.SqlConnection

prepareAwait

suspend fun SqlConnection.prepareAwait(sql: String): PreparedQuery

Suspending version of method io.vertx.sqlclient.SqlConnection.prepare

preparedBatchAwait

suspend fun SqlConnection.preparedBatchAwait(sql: String, batch: List<Tuple>): RowSet

preparedQueryAwait

suspend fun SqlConnection.preparedQueryAwait(sql: String): RowSet
suspend fun SqlConnection.preparedQueryAwait(sql: String, arguments: Tuple): RowSet

queryAwait

suspend fun SqlConnection.queryAwait(sql: String): RowSet