vertx / io.vertx.kotlin.ext.sql / io.vertx.ext.sql.SQLOperations

Extensions for io.vertx.ext.sql.SQLOperations

callAwait

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

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

callWithParamsAwait

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

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

queryAwait

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

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

querySingleAwait

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

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

querySingleWithParamsAwait

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

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

queryStreamAwait

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

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

queryStreamWithParamsAwait

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

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

queryWithParamsAwait

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

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

updateAwait

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

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

updateWithParamsAwait

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

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