Reputation: 1664
What is the right way to execute a prepared statement with parameters in Quarkus 1.5.1 version? As I see the preparedQuery()
method of the PgPool class
doesn't have a second Tuple
argument as in the 1.4.2 version.
The definition in the smallpye-mutiny-vertx-sql-client-0.0.15.jar of Pool class is
public io.vertx.mutiny.sqlclient.PreparedQuery<io.vertx.mutiny.sqlclient.RowSet<io.vertx.mutiny.sqlclient.Row>> preparedQuery(String sql);
Upvotes: 1
Views: 938