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