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 ResultSet
execute()
void
init(CallableStatement statement)
boolean
setParameterValue(int parameterIndex, Class<?> type, Object value)
-
-
-
Method Detail
-
init
void init(CallableStatement statement)
-
setParameterValue
boolean setParameterValue(int parameterIndex, Class<?> type, Object value) throws SQLException
- Throws:
SQLException
-
execute
ResultSet execute() throws SQLException
- Throws:
SQLException
-
-