Interface ProcedureCallHandler
-
- All Known Implementing Classes:
OracleProcedureCallHandler
public interface ProcedureCallHandler- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.sql.ResultSetexecute()voidinit(java.sql.CallableStatement statement)booleansetParameterValue(int parameterIndex, java.lang.Class<?> type, java.lang.Object value)
-
-
-
Method Detail
-
init
void init(java.sql.CallableStatement statement)
-
setParameterValue
boolean setParameterValue(int parameterIndex, java.lang.Class<?> type, java.lang.Object value) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
execute
java.sql.ResultSet execute() throws java.sql.SQLException- Throws:
java.sql.SQLException
-
-