Package io.vertx.sqlclient
Interface Query<T>
-
- All Known Subinterfaces:
PreparedQuery<T>
public interface Query<T>
A query.- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R> Query<SqlResult<R>>
collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specifiedcollector
for collecting the query result to<R>
.Future<T>
execute()
Execute the query.<U> Query<RowSet<U>>
mapping(java.util.function.Function<Row,U> mapper)
-