Uses of Class
com.syncsoft.plainsql.ProcedureResult

Uses of ProcedureResult in com.syncsoft.plainsql
 

Methods in com.syncsoft.plainsql that return ProcedureResult
 ProcedureResult PlainProc.executeProc(java.lang.Object... args)
          Execute the procedure and retrieve result sets and OUT parameters
 ProcedureResult PSconnection.executeProc(java.lang.String procName, java.lang.Object... procArguments)
          Execute a stored procedure, returning a structure that contains the output parameters and the result sets
 

Methods in com.syncsoft.plainsql with parameters of type ProcedureResult
static void SpTestCase.assertColumnCount(ProcedureResult results, int rowSetNo, int columnCount)
          Fails if the RowSet has the wrong number of columns
static void SpTestCase.assertColumnCount(java.lang.String failureMessage, ProcedureResult results, int rowSetNo, int columnCount)
          Fails if the RowSet has the wrong number of columns
static void SpTestCase.assertHasColumn(ProcedureResult results, int rowSetNo, java.lang.String columnName)
          fails if rowSet does not have the named column
static void SpTestCase.assertHasColumn(java.lang.String failureMessage, ProcedureResult results, int rowSetNo, java.lang.String columnName)
          fails if rowSet does not have the named column
static void SpTestCase.assertHasColumnValue(ProcedureResult results, int rowSetNo, java.lang.String columnName, java.lang.Object value)
          Fails if no row has a matching value in the specified column
static void SpTestCase.assertHasColumnValue(java.lang.String failureMessage, ProcedureResult results, int rowSetNo, java.lang.String columnName, java.lang.Object value)
          Fails if no row has a matching value in the specified column
static void SpTestCase.assertParameterValue(ProcedureResult results, int parameterNumber, java.lang.Object value)
          Fails if the specified parameter is not equal to the specified value
static void SpTestCase.assertParameterValue(java.lang.String failureMessage, ProcedureResult results, int parameterNumber, java.lang.Object value)
          Fails if the paramteter is not equal to the value provided
static void SpTestCase.assertRowCount(ProcedureResult results, int rowSetNo, int rowCount)
          Fails if the number of rows in the rowset is not equal to that specified
static void SpTestCase.assertRowCount(java.lang.String failureMessage, ProcedureResult results, int rowSetNo, int rowCount)
          Fails if the number of rows in the rowset is not equal to that specified
static void SpTestCase.assertRowSetCount(ProcedureResult results, int rowSetCount)
          Fail if the number of rowsets in the results is not as specified
static void SpTestCase.assertRowSetCount(java.lang.String failureMessage, ProcedureResult results, int rowSetCount)
          Fail if the number of rowsets in the results is not as specified