org.apache.ws.jaxme.sqls.oracle
Interface OraSelectStatement

All Superinterfaces:
ConstrainedStatement, SelectStatement, Statement
All Known Implementing Classes:
OraSelectStatementImpl

public interface OraSelectStatement
extends SelectStatement


Nested Class Summary
 
Nested classes inherited from class org.apache.ws.jaxme.sqls.SelectStatement
SelectStatement.OrderColumn
 
Method Summary
 CombinedConstraint getConnectByPrior()
          Implements the CONNECT BY PRIOR part of a START WITH ...
 CombinedConstraint getStartWith()
          Implements the START WITH part of a START WITH ...
 
Methods inherited from interface org.apache.ws.jaxme.sqls.SelectStatement
addOrderColumn, addOrderColumn, addOrderColumn, addResultColumn, createView, createView, getMaxRows, getOrderColumns, getResultColumns, getSelectTableReference, getSelectTableReferences, getSkippedRows, isDistinct, setDistinct, setMaxRows, setSkippedRows
 
Methods inherited from interface org.apache.ws.jaxme.sqls.ConstrainedStatement
getWhere
 
Methods inherited from interface org.apache.ws.jaxme.sqls.Statement
createFunction, getSQLFactory, getTableReference, setTable
 

Method Detail

getStartWith

public CombinedConstraint getStartWith()

Implements the START WITH part of a START WITH ... CONNECT BY PRIOR ... clause.

See Also:
getConnectByPrior()

getConnectByPrior

public CombinedConstraint getConnectByPrior()

Implements the CONNECT BY PRIOR part of a START WITH ... CONNECT BY PRIOR ... clause.

See Also:
getStartWith()