| Alias |
Simple encapsulation of the alias name of an object in a SQL statement.
|
| BaseWhereAdapter<T> |
A piece of a where clause which isn't attached to a Select statement
allowing getThis() bit to be reused where the statement/whereClause isn't
yet established.
|
| BindVisitor |
Visitor implementation to bind (set) values for a PreparedStatement.
|
| FromAdapter |
Adapter for building the FROM clause of a SELECT statement
|
| FromClause |
The FromClause SQL definition
|
| FromItem |
An element in the FROM clause
- TableRowSource:
FROM xx_LOGICAL_RESOURCES AS LR0
- SelectRowSource:
FROM (SELECT LR.LOGICAL_ID FROM ...) AS SUB0
|
| FromJoin |
Models a JOIN element in the from clause
|
| FromSubQueryAdapter |
The FromClause adapter
|
| GroupByAdapter |
The GROUP BY part of a SELECT statement
|
| GroupByClause |
Refers to the GroupByClause behavior
|
| HavingAdapter |
Represents the "HAVING" part of a SELECT statement.
|
| HavingClause |
Manages the Having Clause
|
| OrderByAdapter |
The ORDER BY part of a SELECT statement
|
| OrderByClause |
The OrderByClause SQL definition
|
| PaginationClause |
The pagination clause SQL definition
OFFSET {x} LIMIT {y}
or other database-specific equivalent
|
| QueryUtil |
Helper class to generate a PreparedStatement from a Select object.
|
| Select |
|
| SelectAdapter |
An abstract representation of a select statement which can be translated
into an executable select statement.
|
| SelectItem |
A column reference, expression or sub-query item used in the selection list
|
| SelectItemColumn |
An item of the SELECT list which is a simple column reference
|
| SelectItemSubQuery |
Item in a SELECT clause which is itself a sub-query
|
| SelectList |
Represents the list of columns, expressions or sub-queries being selected
from one or more tables (or subqueries)
|
| SelectRowSource |
Represents a sub-query referenced in the from list
|
| SqlConstants |
Some useful constants for building SQL statements
|
| TableRowSource |
Represents a table referenced in the from list
FROM foo
or
FROM bar.foo
|
| WhereAdapter |
Adapter to help build the WHERE clause expression.
|
| WhereClause |
The WhereClause SQL definition
|
| WhereFragment |
An adapter which represents just a fragment of the where clause
so we can build up just a portion of the predicate without having
access to the whole clause
|
| With |
Represents a WITH clause in a select statement
|