Oracle Data-aware Controls Reference

oracle.dacf.dataset
Class QueryViewInfo

java.lang.Object
  |
  +--oracle.dacf.dataset.Query
        |
        +--oracle.dacf.dataset.QueryClauses
              |
              +--oracle.dacf.dataset.QueryViewInfo
All Implemented Interfaces:
java.lang.Cloneable

public class QueryViewInfo
extends QueryClauses

QueryViewInfo defines an updateable SQL query based on a predefined Java Business Objects View Object. This class can optionally be instantiated with updated values for the WHERE and ORDERBY clauses.

Version:
SDK

Fields inherited from class oracle.dacf.dataset.QueryClauses
_orderby, _where
 
Fields inherited from class oracle.dacf.dataset.Query
_DEBUG, _DesignTimeHasChanged_
 
Constructor Summary
QueryViewInfo(java.lang.String name)
          Constructor requiring the name of a predefined View Object.
QueryViewInfo(java.lang.String name, java.lang.String where, java.lang.String orderby)
          Constructs a query using a predefined View Object and a WHERE and ORDERBY clause.
 
Method Summary
 boolean equals(java.lang.Object obj)
          Returns true if the compared object is identical to this QueryViewInfo instance.
 
Methods inherited from class oracle.dacf.dataset.QueryClauses
getOrderByClause, getWhereClause, setOrderByClause, setWhereClause
 
Methods inherited from class oracle.dacf.dataset.Query
clone, getName, getQueryParams, setName, setQueryParams
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryViewInfo

public QueryViewInfo(java.lang.String name)
Constructor requiring the name of a predefined View Object.

QueryViewInfo

public QueryViewInfo(java.lang.String name,
                     java.lang.String where,
                     java.lang.String orderby)
Constructs a query using a predefined View Object and a WHERE and ORDERBY clause.
Parameters:
name - the View Object name.
where - value for the WHERE clause.
orderby - value for the ORDERBY clause.
Method Detail

equals

public boolean equals(java.lang.Object obj)
Returns true if the compared object is identical to this QueryViewInfo instance.
Overrides:
equals in class Query
Parameters:
obj - the object you want to compare.
Returns:
true if the compared object is identical; false otherwise

Oracle Data-aware Controls Reference