JdbcQuery<T> |
JdbcQuery.extractingColumn() |
Configures this query to extract the value of the first column.
|
JdbcQuery<T> |
JdbcQuery.extractingColumn(int index) |
Configures this query to extract the value of the given column.
|
JdbcQuery<T> |
JdbcQuery.extractingColumn(String label) |
Configures this query to extract the value of the given column.
|
JdbcQuery<T> |
JdbcQuery.handlingResultWith(ResultSetHandler<T> handler) |
Configures this query to use the given result set handler.
|
JdbcQuery<T> |
JdbcQuery.mappingRowsWith(RowMapper<T> rowMapper) |
Configures this query to use the given row mapper.
|
JdbcQuery<Void> |
FluentJdbc.query() |
Creates a query operation.
|
JdbcQuery<Void> |
JdbcOperations.query() |
Creates a query operation.
|
<T> JdbcQuery<T> |
FluentJdbc.queryForType(Class<T> type) |
Creates a query operation for objects of a given type.
|
<T> JdbcQuery<T> |
JdbcOperations.queryForType(Class<T> type) |
Creates a query operation for objects of a given type.
|
JdbcQuery<T> |
JdbcQuery.repeatedly() |
Configures this query for repeated execution.
|
JdbcQuery<T> |
JdbcQuery.using(String sql) |
Configures this query to execute the given SQL statement.
|
JdbcQuery<T> |
JdbcQuery.using(SQLSource source) |
Configures this query to execute the given SQL statement.
|