Uses of Interface
io.vertx.sqlclient.Query
-
Packages that use Query Package Description io.vertx.sqlclient -
-
Uses of Query in io.vertx.sqlclient
Subinterfaces of Query in io.vertx.sqlclient Modifier and Type Interface Description interfacePreparedQuery<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(Collector<Row,?,R> collector)Use the specifiedcollectorfor collecting the query result to<R>.<U> Query<RowSet<U>>Query. mapping(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.
-