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

callAwait

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

Calls the given SQL PROCEDURE which returns the result from the procedure.

Parameters

sql - the SQL to execute. For example {call getEmpName}.

resultHandler - the handler which is called once the operation completes. It will return a ResultSet.

Return