Interface PreparedQuery<T>
- All Superinterfaces:
Query<T>
A query for a prepared statement allowing parameterized execution of the query, this query will use
a prepared statement.
- Author:
- Julien Viet
-
Method Summary
Modifier and TypeMethodDescription<R> PreparedQuery<SqlResult<R>> collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>.Execute the query.executeBatch(List<Tuple> batch) Execute the query with a batch of tuples.<U> PreparedQuery<RowSet<U>>
-
Method Details
-
execute
-
executeBatch
-
collecting
Use the specifiedcollectorfor collecting the query result to<R>.- Specified by:
collectingin interfaceQuery<T>
-
mapping
-