<S> CompletableFuture<List<S>> |
DataTemplate.query(PreparedStatementCreator psc,
RowMapper<S> rowMapper) |
Executes a query using a PreparedStatement, mapping each row to a result object via a RowMapper implementation.
|
<S> CompletableFuture<List<S>> |
DataTemplate.query(String sql,
PreparedStatementSetter pss,
RowMapper<S> rowMapper) |
Executes a query using a SQL statement and a PreparedStatementSetter implementation that will bind values to the query.
|
<S> CompletableFuture<List<S>> |
DataTemplate.queryForList(String sql,
RowMapper<S> rowMapper) |
Executes a query given static SQL statement, then it maps each
ResultSet row to a result object using the RowMapper implementation.
|
<S> CompletableFuture<List<S>> |
DataTemplate.queryForList(String sql,
Object[] args,
RowMapper<S> rowMapper) |
Executes a query given a SQL statement: it will be used to create a PreparedStatement.
|
<S> CompletableFuture<S> |
DataTemplate.queryForObject(String sql,
RowMapper<S> rowMapper) |
Executes a query given static SQL statement, then it maps the first
ResultSet row to a result object using the RowMapper implementation.
|
<S> CompletableFuture<S> |
DataTemplate.queryForObject(String sql,
Object[] args,
RowMapper<S> rowMapper) |
Executes a query given a SQL statement: it will be used to create a PreparedStatement.
|