Package com.ibm.pdq.runtime.handlers


Interface Summary

Interface Description
CallHandler<T> Processes the results of an SQL stored procedure call and returns an object of type T that describes the results.
CallHandlerWithParameters<CAL> Processes the results of an SQL stored procedure call and returns an object of type CAL that describes the results.
ParameterHandler Sets the values of the parameters in the PreparedStatement stmt from the values in the passed-in parameters and registers any OUT or INOUT parameters.
ResultHandler<RES> Processes the entire query result of an SQL statement and returns the contents in an object of type RES.
RowHandler<ROW> Processes one row from the query result of an SQL statement and returns the contents of that row in an object of type ROW.
RowHandlerWithParameters<ROW> Processes one row from the query result of an SQL statement and returns the contents of that row in an object of type ROW.