vertx / io.vertx.kotlin.mysqlclient / io.vertx.mysqlclient.MySQLPool

Extensions for io.vertx.mysqlclient.MySQLPool

preparedBatchAwait

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

preparedQueryAwait

suspend fun MySQLPool.preparedQueryAwait(sql: String): RowSet<Row>
suspend fun MySQLPool.preparedQueryAwait(sql: String, arguments: Tuple): RowSet<Row>

queryAwait

suspend fun MySQLPool.queryAwait(sql: String): RowSet<Row>