org.apache.ws.jaxme.sqls.oracle

Interface OraSelectStatement

public interface OraSelectStatement extends SelectStatement

Oracle specific interface of SelectStatement.
Nested Class Summary
static interfaceOraSelectStatement.OraOrderColumn
An extension of SelectStatement with the ability to specify, whether NULL comes first or last.
Method Summary
voidaddOrderColumn(Object pObject, boolean pDescending, boolean pNullsFirst)
Adds the given order column with the given values for isDescending and isNullsFirst.
CombinedConstraintgetConnectBy()
Implements the CONNECT BY PRIOR part of a START WITH ...
CombinedConstraintgetStartWith()
Implements the START WITH part of a START WITH ...

Method Detail

addOrderColumn

public void addOrderColumn(Object pObject, boolean pDescending, boolean pNullsFirst)
Adds the given order column with the given values for isDescending and isNullsFirst.

getConnectBy

public CombinedConstraint getConnectBy()
Implements the CONNECT BY PRIOR part of a START WITH ... CONNECT BY PRIOR ... clause.

See Also: getStartWith

getStartWith

public CombinedConstraint getStartWith()
Implements the START WITH part of a START WITH ... CONNECT BY PRIOR ... clause.

See Also: getConnectBy