Uses of Interface
io.vertx.sqlclient.Query
-
Packages that use Query Package Description io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient -
-
Uses of Query in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return Query Modifier and Type Method Description Query
Query. getDelegate()
Methods in io.vertx.reactivex.sqlclient with parameters of type Query Modifier and Type Method Description static <T> Query<T>
Query. newInstance(Query arg)
static <T> Query<T>
Query. newInstance(Query arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.reactivex.sqlclient with parameters of type Query Constructor Description Query(Query delegate)
-
Uses of Query in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return Query Modifier and Type Method Description Query
Query. getDelegate()
Methods in io.vertx.rxjava3.sqlclient with parameters of type Query Modifier and Type Method Description static <T> Query<T>
Query. newInstance(Query arg)
static <T> Query<T>
Query. newInstance(Query arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.rxjava3.sqlclient with parameters of type Query Constructor Description Query(Query delegate)
-
Uses of Query in io.vertx.sqlclient
Subinterfaces of Query in io.vertx.sqlclient Modifier and Type Interface Description interface
PreparedQuery<T>
A query for a prepared statement allowing parameterized execution of the query, this query will use a prepared statement.Methods in io.vertx.sqlclient that return Query Modifier and Type Method Description <R> Query<SqlResult<R>>
Query. collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specifiedcollector
for collecting the query result to<R>
.<U> Query<RowSet<U>>
Query. mapping(java.util.function.Function<Row,U> mapper)
Query<RowSet<Row>>
Pool. query(String sql)
Create a query, theexecute()
method must be called to execute the query.Query<RowSet<Row>>
SqlClient. query(String sql)
Create a query, theexecute()
method must be called to execute the query.
-