| Package | Description |
|---|---|
| org.sql.generation.api.grammar.builders.query |
Package to hold builders for SQL queries (
SELECT -statements). |
| Modifier and Type | Interface and Description |
|---|---|
interface |
QuerySpecificationBuilder
This builder builds a single
SELECT query. |
interface |
SimpleQueryBuilder
This is builder to quickly create simple queries, without the generic and not-so-easy-to-use methods of traditional
QuerySpecificationBuilder + QueryFactory style. |
| Modifier and Type | Method and Description |
|---|---|
AbstractQueryBuilder<ExpressionType> |
AbstractQueryBuilder.limit()
Adds the
FETCH FIRST ROW ONLY expression for this query. |
AbstractQueryBuilder<ExpressionType> |
AbstractQueryBuilder.limit(Integer max)
Adds the
FETCH FIRST <number> ROWS ONLY expression for this query. |
AbstractQueryBuilder<ExpressionType> |
AbstractQueryBuilder.limit(NonBooleanExpression max)
Adds the
FETCH FIRST <number> ROWS ONLY expression for this query. |
AbstractQueryBuilder<ExpressionType> |
AbstractQueryBuilder.offset(Integer skip)
Adds the
OFFSET <number> ROWS expression for this query. |
AbstractQueryBuilder<ExpressionType> |
AbstractQueryBuilder.offset(NonBooleanExpression skip)
Adds the
OFFSET <number> ROWS expression for this query. |
Copyright © 2010-2012. All Rights Reserved.