Methods in org.ephman.abra.database that return DatabaseCursor |
DatabaseCursor |
EndDateFactoryBase.cursorQuery(DatabaseSession dbSess,
QueryFilter query,
SortCriteria sortBy)
|
DatabaseCursor |
GenericFactoryBase.cursorQuery(DatabaseSession dbSess,
SortCriteria sortBy)
A routine to perform a search given an ordering
which returns the Vector of oid hits in a DatabaseCursor object
this allows small range retrievals with any type of data abstraction |
DatabaseCursor |
GenericFactoryBase.cursorQuery(DatabaseSession dbSess,
QueryFilter query)
A routine to perform a search given a filter
which returns the Vector of oid hits in a DatabaseCursor object
this allows small range retrievals with any type of data abstraction |
DatabaseCursor |
GenericFactoryBase.cursorQuery(DatabaseSession dbSess,
QueryFilter query,
SortCriteria sortBy)
A routine to perform a search given a filter and an ordering
which returns the Vector of oid hits in a DatabaseCursor object
this allows small range retrievals with any type of data abstraction |
protected DatabaseCursor |
GenericFactoryBase.cursorRawQuery(DatabaseSession dbSess,
java.lang.String sql)
Raw query returns DatabaseCursor - to be used in descendant classes |
protected DatabaseCursor |
GenericFactoryBase.cursorStoredProcCall(DatabaseSession dbSess,
java.lang.String procCall,
java.util.Vector args,
SortCriteria sort)
|