I need to send a parameter of type OUT in the call to the stored procedure, I can't find a way to declare (instead of "OUTparameter") it using quarkus-reactive-oracle-client
I use:
@Inject io.vertx.mutiny.oracleclient.OraclePool client; Fragment:
Uni<RowSet<Row>> rowSet = client.preparedQuery("{CALL RSMFE02PCK.GET_ALL_XML(?,?)}").execute(Tuple.of(contract, "OUTparameter")); return rowSet.onItem().transformToMulti(set -> Multi.createFrom().iterable(set)).onItem().transform(row -> row.getString(0));