Class OracleProcedureCallHandler
- java.lang.Object
-
- net.sf.jasperreports.engine.query.OracleProcedureCallHandler
-
- All Implemented Interfaces:
ProcedureCallHandler
public class OracleProcedureCallHandler extends Object implements ProcedureCallHandler
- Author:
- Barry Klawans (bklawans@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description OracleProcedureCallHandler()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ResultSet
execute()
void
init(CallableStatement statement)
protected boolean
isDataDirectDriver()
protected static boolean
isOracle(Connection connection)
boolean
setParameterValue(int parameterIndex, Class<?> type, Object value)
-
-
-
Method Detail
-
isOracle
protected static boolean isOracle(Connection connection) throws SQLException
- Throws:
SQLException
-
init
public void init(CallableStatement statement)
- Specified by:
init
in interfaceProcedureCallHandler
-
isDataDirectDriver
protected boolean isDataDirectDriver()
-
setParameterValue
public boolean setParameterValue(int parameterIndex, Class<?> type, Object value) throws SQLException
- Specified by:
setParameterValue
in interfaceProcedureCallHandler
- Throws:
SQLException
-
execute
public ResultSet execute() throws SQLException
- Specified by:
execute
in interfaceProcedureCallHandler
- Throws:
SQLException
-
-