PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Vertx JDBC client queryWithParams - come aggiungere un elenco?

La risposta breve è che non puoi aggiungere un elenco come parametro di query con il client JDBC Vertx generico, ma poiché stai utilizzando Postgres esiste una libreria specifica di Postgres chiamata vertx-pg-client che puoi utilizzare. Ho implementato più o meno la stessa query che hai fatto con questo codice:

List<String> currencies = whatever();
String uri = "your-uri";
String query = "select from table where currency = any($1)";
PgConnection.connect(vertx, uri, connectionResult -> {
    if (connectionResult.failed()) {
        // handle
    } else {
        PgConnection connection = connectionResult.result();
        Tuple params = Tuple.of(currencies);

        doQuery(query, connection, params).setHandler(queryResult -> {
            connection.close();
            msg.reply(queryResult.result());
        });
    }
});

    private Future<String> doQuery(String sql, PgConnection connection, Tuple params) {
        Promise<String> promise = Promise.promise();
        connection.preparedQuery(sql, params, res -> {
            if (res.failed()) {
                // log
                promise.fail(res.cause());
            } else {
                RowSet<Row> rowSet = res.result();
                // do something with the rows and construct a return object (here, a string)
                String result = something;
                promise.complete(result);
            }
        });
        return promise.future();
    }

Tutto il merito va a @tsegismont che mi ha aiutato con la stessa domanda qui .