Modifier and Type | Method and Description |
---|---|
SelectStatementProvider |
SelectModel.render(RenderingStrategy renderingStrategy) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultSelectStatementProvider |
Modifier and Type | Method and Description |
---|---|
SelectStatementProvider |
SelectRenderer.render() |
Modifier and Type | Method and Description |
---|---|
String |
SqlProviderAdapter.select(SelectStatementProvider selectStatement) |
Modifier and Type | Method and Description |
---|---|
static SelectStatementProvider |
MyBatis3Utils.count(BasicColumn column,
SqlTable table,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.countDistinct(BasicColumn column,
SqlTable table,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.countFrom(CountDSL<SelectModel> start,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.countFrom(SqlTable table,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.select(BasicColumn[] selectList,
SqlTable table,
SelectDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.select(QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.selectDistinct(BasicColumn[] selectList,
SqlTable table,
SelectDSLCompleter completer) |
Modifier and Type | Method and Description |
---|---|
long |
CommonCountMapper.count(SelectStatementProvider selectStatement)
Execute a select statement that returns a long (typically a select(count(*)) statement).
|
default <R> List<R> |
CommonSelectMapper.selectMany(SelectStatementProvider selectStatement,
Function<Map<String,Object>,R> rowMapper)
Select any number of rows and then convert the values to a custom type.
|
List<BigDecimal> |
CommonSelectMapper.selectManyBigDecimals(SelectStatementProvider selectStatement)
Retrieve a List of
BigDecimal from a result set. |
List<Double> |
CommonSelectMapper.selectManyDoubles(SelectStatementProvider selectStatement)
Retrieve a List of
Double from a result set. |
List<Integer> |
CommonSelectMapper.selectManyIntegers(SelectStatementProvider selectStatement)
Retrieve a List of
Integer from a result set. |
List<Long> |
CommonSelectMapper.selectManyLongs(SelectStatementProvider selectStatement)
Retrieve a List of
Long from a result set. |
List<Map<String,Object>> |
CommonSelectMapper.selectManyMappedRows(SelectStatementProvider selectStatement)
Select any number of rows and return a List of Maps containing row values (one Map for each row returned).
|
List<String> |
CommonSelectMapper.selectManyStrings(SelectStatementProvider selectStatement)
Retrieve a List of
String from a result set. |
default <R> R |
CommonSelectMapper.selectOne(SelectStatementProvider selectStatement,
Function<Map<String,Object>,R> rowMapper)
Select a single row of values and then convert the values to a custom type.
|
BigDecimal |
CommonSelectMapper.selectOneBigDecimal(SelectStatementProvider selectStatement)
Retrieve a single
BigDecimal from a result set. |
Double |
CommonSelectMapper.selectOneDouble(SelectStatementProvider selectStatement)
Retrieve a single
Double from a result set. |
Integer |
CommonSelectMapper.selectOneInteger(SelectStatementProvider selectStatement)
Retrieve a single
Integer from a result set. |
Long |
CommonSelectMapper.selectOneLong(SelectStatementProvider selectStatement)
Retrieve a single
Long from a result set. |
Map<String,Object> |
CommonSelectMapper.selectOneMappedRow(SelectStatementProvider selectStatement)
Select a single row as a Map of values.
|
String |
CommonSelectMapper.selectOneString(SelectStatementProvider selectStatement)
Retrieve a single
String from a result set. |
Optional<BigDecimal> |
CommonSelectMapper.selectOptionalBigDecimal(SelectStatementProvider selectStatement)
Retrieve a single
BigDecimal from a result set. |
Optional<Double> |
CommonSelectMapper.selectOptionalDouble(SelectStatementProvider selectStatement)
Retrieve a single
Double from a result set. |
Optional<Integer> |
CommonSelectMapper.selectOptionalInteger(SelectStatementProvider selectStatement)
Retrieve a single
Integer from a result set. |
Optional<Long> |
CommonSelectMapper.selectOptionalLong(SelectStatementProvider selectStatement)
Retrieve a single
Long from a result set. |
Optional<String> |
CommonSelectMapper.selectOptionalString(SelectStatementProvider selectStatement)
Retrieve a single
String from a result set. |
Modifier and Type | Method and Description |
---|---|
long |
NamedParameterJdbcTemplateExtensions.count(SelectStatementProvider countStatement) |
<T> List<T> |
NamedParameterJdbcTemplateExtensions.selectList(SelectStatementProvider selectStatement,
org.springframework.jdbc.core.RowMapper<T> rowMapper) |
<T> Optional<T> |
NamedParameterJdbcTemplateExtensions.selectOne(SelectStatementProvider selectStatement,
org.springframework.jdbc.core.RowMapper<T> rowMapper) |
Modifier and Type | Class and Description |
---|---|
static class |
SpringBatchPagingReaderSelectModel.LimitAndOffsetDecorator |
Modifier and Type | Method and Description |
---|---|
SelectStatementProvider |
SpringBatchCursorReaderSelectModel.render() |
SelectStatementProvider |
SpringBatchPagingReaderSelectModel.render() |
Modifier and Type | Method and Description |
---|---|
static Map<String,Object> |
SpringBatchUtility.toParameterValues(SelectStatementProvider selectStatement) |
Constructor and Description |
---|
LimitAndOffsetDecorator(SelectStatementProvider delegate) |
Copyright © 2016–2021 MyBatis.org. All rights reserved.