| 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[] | 
AbstractSQLQueryBuilder.getColumnUsages()
Deprecated.  
 | 
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 )  | 
| Modifier and Type | Method and Description | 
|---|---|
static java.util.Collection<ColumnUsage> | 
SQLFragmentUtils.listColumnUsages(SQLFragment expression)
Deprecated. 
 
use the generic DBUtil.findChildren method to find children
 of a given class underneath the SQLFragment. i.e.
  
DBUtil.findChildren( expression, ColumnUsage.class )  | 
| 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. 
 |