SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.arguments(Object... arguments) |
Set the arguments to be substituted into the query.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.from(String fromClause) |
Set the content of the "from" clause.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.groupBy(String groupByClause) |
Set the content of the "group by" clause.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.having(String havingClause) |
Set the content of the "having" clause.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.insertInto(String insertStatement) |
Set the insert into statement resulting in an "insert into ...
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.limit(long limit) |
Set the maximum number of rows returned by the query.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.offset(long offset) |
Set the offset of the results returned by the query.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.orderBy(String orderByClause) |
Set the content of the "order by" clause.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.select(Iterable<String> selectColumns) |
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.select(String... selectColumns) |
Set the list of columns to select.
|
SelectWithOffsetLimitCommand.Builder |
SelectWithOffsetLimitCommand.Builder.where(String whereClause) |
Set the content of the "where" clause.
|