vertx / io.vertx.kotlin.ext.sql / io.vertx.ext.sql.SQLConnection

Extensions for io.vertx.ext.sql.SQLConnection

batchAwait

suspend fun SQLConnection.batchAwait(sqlStatements: List<String>): List<Int>

Suspending version of method io.vertx.ext.sql.SQLConnection.batch

batchCallableWithParamsAwait

suspend fun SQLConnection.batchCallableWithParamsAwait(sqlStatement: String, inArgs: List<JsonArray>, outArgs: List<JsonArray>): List<Int>

Suspending version of method io.vertx.ext.sql.SQLConnection.batchCallableWithParams

batchWithParamsAwait

suspend fun SQLConnection.batchWithParamsAwait(sqlStatement: String, args: List<JsonArray>): List<Int>

Suspending version of method io.vertx.ext.sql.SQLConnection.batchWithParams

callAwait

suspend fun SQLConnection.callAwait(sql: String): ResultSet

Suspending version of method io.vertx.ext.sql.SQLConnection.call

callWithParamsAwait

suspend fun SQLConnection.callWithParamsAwait(sql: String, params: JsonArray, outputs: JsonArray): ResultSet

Suspending version of method io.vertx.ext.sql.SQLConnection.callWithParams

closeAwait

suspend fun SQLConnection.closeAwait(): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.close

commitAwait

suspend fun SQLConnection.commitAwait(): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.commit

executeAwait

suspend fun SQLConnection.executeAwait(sql: String): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.execute

getTransactionIsolationAwait

suspend fun SQLConnection.getTransactionIsolationAwait(): TransactionIsolation

Suspending version of method io.vertx.ext.sql.SQLConnection.getTransactionIsolation

queryAwait

suspend fun SQLConnection.queryAwait(sql: String): ResultSet

Suspending version of method io.vertx.ext.sql.SQLConnection.query

querySingleAwait

suspend fun SQLConnection.querySingleAwait(sql: String): JsonArray?

Suspending version of method io.vertx.ext.sql.SQLConnection.querySingle

querySingleWithParamsAwait

suspend fun SQLConnection.querySingleWithParamsAwait(sql: String, arguments: JsonArray): JsonArray?

Suspending version of method io.vertx.ext.sql.SQLConnection.querySingleWithParams

queryStreamAwait

suspend fun SQLConnection.queryStreamAwait(sql: String): SQLRowStream

Suspending version of method io.vertx.ext.sql.SQLConnection.queryStream

queryStreamWithParamsAwait

suspend fun SQLConnection.queryStreamWithParamsAwait(sql: String, params: JsonArray): SQLRowStream

Suspending version of method io.vertx.ext.sql.SQLConnection.queryStreamWithParams

queryWithParamsAwait

suspend fun SQLConnection.queryWithParamsAwait(sql: String, params: JsonArray): ResultSet

Suspending version of method io.vertx.ext.sql.SQLConnection.queryWithParams

rollbackAwait

suspend fun SQLConnection.rollbackAwait(): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.rollback

setAutoCommitAwait

suspend fun SQLConnection.setAutoCommitAwait(autoCommit: Boolean): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.setAutoCommit

setTransactionIsolationAwait

suspend fun SQLConnection.setTransactionIsolationAwait(isolation: TransactionIsolation): Unit

Suspending version of method io.vertx.ext.sql.SQLConnection.setTransactionIsolation

updateAwait

suspend fun SQLConnection.updateAwait(sql: String): UpdateResult

Suspending version of method io.vertx.ext.sql.SQLConnection.update

updateWithParamsAwait

suspend fun SQLConnection.updateWithParamsAwait(sql: String, params: JsonArray): UpdateResult

Suspending version of method io.vertx.ext.sql.SQLConnection.updateWithParams