Uses of Interface
io.vertx.sqlclient.PreparedQuery
-
Packages that use PreparedQuery Package Description io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient -
-
Uses of PreparedQuery in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return PreparedQuery Modifier and Type Method Description PreparedQuery
PreparedQuery. getDelegate()
Methods in io.vertx.reactivex.sqlclient with parameters of type PreparedQuery Modifier and Type Method Description static <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 Constructor Description PreparedQuery(PreparedQuery delegate)
-
Uses of PreparedQuery in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return PreparedQuery Modifier and Type Method Description PreparedQuery
PreparedQuery. getDelegate()
Methods in io.vertx.rxjava3.sqlclient with parameters of type PreparedQuery Modifier and Type Method Description static <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 Constructor Description PreparedQuery(PreparedQuery delegate)
-
Uses of PreparedQuery in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return PreparedQuery Modifier and Type Method Description <R> PreparedQuery<SqlResult<R>>
PreparedQuery. collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specifiedcollector
for collecting the query result to<R>
.<U> PreparedQuery<RowSet<U>>
PreparedQuery. mapping(java.util.function.Function<Row,U> mapper)
PreparedQuery<RowSet<Row>>
Pool. preparedQuery(String sql)
Create a prepared query, one of theexecute(io.vertx.sqlclient.Tuple)
orexecuteBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql)
Create a prepared query, one of theexecute(io.vertx.sqlclient.Tuple)
orexecuteBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql, PrepareOptions options)
Create a prepared query, one of theexecute(io.vertx.sqlclient.Tuple)
orexecuteBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Create a prepared query for this statement.
-