Uses of Interface
io.vertx.sqlclient.PreparedQuery
Packages that use PreparedQuery
-
Uses of PreparedQuery in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return PreparedQueryMethods in io.vertx.reactivex.sqlclient with parameters of type PreparedQueryModifier and TypeMethodDescriptionstatic <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg) static <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) Constructors in io.vertx.reactivex.sqlclient with parameters of type PreparedQuery -
Uses of PreparedQuery in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return PreparedQueryMethods in io.vertx.rxjava3.sqlclient with parameters of type PreparedQueryModifier and TypeMethodDescriptionstatic <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg) static <T> PreparedQuery<T> PreparedQuery.newInstance(PreparedQuery arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) Constructors in io.vertx.rxjava3.sqlclient with parameters of type PreparedQuery -
Uses of PreparedQuery in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return PreparedQueryModifier and TypeMethodDescription<R> PreparedQuery<SqlResult<R>> PreparedQuery.collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>.<U> PreparedQuery<RowSet<U>> Pool.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql, PrepareOptions options) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.PreparedStatement.query()Create a prepared query for this statement.