| Package | Description |
|---|---|
| oracle.javatools.db.sql |
Contains an API for declaratively parsing SQL queries (SELECT statements).
|
| Modifier and Type | Class and Description |
|---|---|
class |
OnJoinCondition
Object to represent the ON condition of a JOIN clause.
|
class |
UsingJoinCondition
Object to represent the condition part of a JOIN that has a USING clause.
|
| Modifier and Type | Method and Description |
|---|---|
protected JoinCondition |
AbstractSQLQueryBuilder.createJoinCondition(FKConstraint fk, JoinObject join)
Constructs a condition to represent the given FK for the given join.
|
JoinCondition |
JoinObject.getCondition() |
| Modifier and Type | Method and Description |
|---|---|
void |
JoinObject.setCondition(JoinCondition condition) |
| Constructor and Description |
|---|
JoinObject(FromObject left, FromObject right, JoinCondition condition)
Creates a default join for the given FromObjects and condition.
|
JoinObject(FromObject left, FromObject right, java.lang.String type, boolean natural, JoinCondition condition)
Note: If using existing FromObjects for the left or right parameters, it is the responsibility of the API user to remove these FromObjects from the query.
|