vertx / io.vertx.kotlin.pgclient / io.vertx.pgclient.PgConnection

Extensions for io.vertx.pgclient.PgConnection

prepareAwait

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

preparedBatchAwait

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

preparedQueryAwait

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

queryAwait

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