Package | Description |
---|---|
oracle.javatools.db.sql |
Contains an API for declaratively parsing SQL queries (SELECT statements).
|
Modifier and Type | Method and Description |
---|---|
ColumnUsage |
AbstractSQLQueryBuilder.findColumnInStarSubQuery(java.lang.String colName, boolean external, FromObject from)
The from object is of the form (SELECT * FROM <rel>) <alias>
|
ColumnUsage[] |
SQLQueryBuilder.getColumnUsages()
Deprecated.
use the generic DBUtil.findChildren method to find children of a given class underneath the SQLQuery. i.e.
DBUtil.findChildren( builder.getSQLQuery(), ColumnUsage.class ) |
ColumnUsage[] |
AbstractSQLQueryBuilder.getColumnUsages()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Collection<ColumnUsage> |
SQLFragmentUtils.listColumnUsages(SQLFragment expression)
Lists the columns available from the given SQLFragment.
|
Modifier and Type | Method and Description |
---|---|
protected FromObjectUsage |
AbstractSQLQueryBuilder.findColumnInColumnUsage(java.lang.String colName, boolean external, ColumnUsage colu, FromObject from)
Finds a column in the given ColumnUsage.
|