|
JDBaccess API 1.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CallResult
Results of procedure calls (in Oracle also of function calls). You get a call result for example by calling yourProcedure.getResult(n) with the appropriate result position. CallResult are like Result and have many methods of Result. But call results are not scrollable so that some methods like getPreviousElements are not available.
Method Summary | |
---|---|
java.util.ArrayList |
getAllElements()
Get all the elements of the result. |
java.util.ArrayList |
getFields()
This method delivers all fields (with type, sqlType, scale, precision etc.) as an Arraylist for that select. |
TransferObject |
getNextElement()
Get the next element of the result from actual position forward. |
java.util.ArrayList |
getNextElements()
Get the next elements of the result from actual position forward as the page size is defined. |
java.util.ArrayList |
getNextElements(long count)
Get the next "count" elements of the result from actual position forward. |
long |
getPosition()
Get the actual position of the result |
int |
getResultPosition()
Get the result position of that call result in its call. |
void |
setPageSize(int pageSize)
Set the page size of the result. |
void |
setReadLobsFull(boolean readLobsFull)
if true, all lob fields are read completely from the database tables, else lob fields are read only to a default size because of performance reasons |
Method Detail |
---|
int getResultPosition()
TransferObject getNextElement() throws ApplicationException
ApplicationException
java.util.ArrayList getNextElements() throws ApplicationException
ApplicationException
java.util.ArrayList getNextElements(long count) throws ApplicationException
count
- number of elements which should be fetched
ApplicationException
java.util.ArrayList getAllElements() throws ApplicationException
ApplicationException
long getPosition()
void setPageSize(int pageSize)
pageSize
- page size of the resultvoid setReadLobsFull(boolean readLobsFull)
readLobsFull
- java.util.ArrayList getFields()
|
JDBaccess API 1.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |