|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.syncsoft.plainsql.ProcedureResult
public class ProcedureResult
An object that represents all the outputs from a stored procedure execution inluding all result sets and output parameters (which are also returned into the variables provided during execution of course.
| Constructor Summary | |
|---|---|
ProcedureResult(PlainProc procName,
java.lang.Object... procParameters)
Create a procedure result structure. |
|
| Method Summary | |
|---|---|
java.lang.Object |
getOutParameter(int outParameter)
Get value of an output parameter |
java.sql.ParameterMetaData |
getParameterMetaData()
|
java.util.ArrayList<java.lang.Object> |
getParameterValues()
|
RowSet |
getRowSet(int rowSetNumber)
Get a specific rowset from the procedure output |
int |
getRowSetCount()
|
java.util.ArrayList<RowSet> |
getRowSets()
|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ProcedureResult(PlainProc procName,
java.lang.Object... procParameters)
throws java.sql.SQLException
procName - name of the stored procedureprocParameters - array of parameters to the stored procedure
java.sql.SQLException| Method Detail |
|---|
public java.lang.Object getOutParameter(int outParameter)
throws java.sql.SQLException
outParameter - - parameter number (starting at 1)
java.sql.SQLException
public RowSet getRowSet(int rowSetNumber)
throws java.sql.SQLException
rowSetNumber - rowset identifier (starting from 1)
java.sql.SQLExceptionpublic java.sql.ParameterMetaData getParameterMetaData()
public java.util.ArrayList<java.lang.Object> getParameterValues()
public java.util.ArrayList<RowSet> getRowSets()
public int getRowSetCount()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||