com.ontimize.db
Interface AdvancedEntity
- All Superinterfaces:
- Entity, java.rmi.Remote
- All Known Implementing Classes:
- TableEntity
- public interface AdvancedEntity
- extends Entity
|
Method Summary |
AdvancedEntityResult |
query(java.util.Hashtable kv,
java.util.Vector attributes,
int sessionId,
int recordNumber,
int startIndex,
java.lang.String orderBy,
boolean desc)
Deprecated. |
AdvancedEntityResult |
query(java.util.Hashtable kv,
java.util.Vector attributes,
int sessionId,
int recordNumber,
int startIndex,
java.util.Vector orderBy)
|
query
public AdvancedEntityResult query(java.util.Hashtable kv,
java.util.Vector attributes,
int sessionId,
int recordNumber,
int startIndex,
java.lang.String orderBy,
boolean desc)
throws java.lang.Exception
- Deprecated.
- Parameters:
kv - attributes - sessionId - recordNumber - startIndex - orderBy - desc -
- Returns:
-
- Throws:
java.lang.Exception
query
public AdvancedEntityResult query(java.util.Hashtable kv,
java.util.Vector attributes,
int sessionId,
int recordNumber,
int startIndex,
java.util.Vector orderBy)
throws java.lang.Exception
- Parameters:
kv - a Hashtable specifying conditions that must comply the set of
records returned. Cannot be null.attributes - a list of columns that must be recovered for each record
returned. Cannot be null. If empty, all attributes will be
returned.sessionId - a integer identifying the user or session that performs the
action.recordNumber - a integer establishing the number of records that will be returned.startIndex - a integer establishing the position of the first record that will be returned.orderBy - a Vector of String or SQLStatementBuilder.SQLOrder objects in where the column orderer is established.
- Returns:
-
- Throws:
java.lang.Exception