Class OracleProcedureCallHandler
- java.lang.Object
-
- net.sf.jasperreports.engine.query.OracleProcedureCallHandler
-
- All Implemented Interfaces:
ProcedureCallHandler
public class OracleProcedureCallHandler extends java.lang.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 java.sql.ResultSetexecute()voidinit(java.sql.CallableStatement statement)protected booleanisDataDirectDriver()protected static booleanisOracle(java.sql.Connection connection)booleansetParameterValue(int parameterIndex, java.lang.Class<?> type, java.lang.Object value)
-
-
-
Method Detail
-
isOracle
protected static boolean isOracle(java.sql.Connection connection) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
init
public void init(java.sql.CallableStatement statement)
- Specified by:
initin interfaceProcedureCallHandler
-
isDataDirectDriver
protected boolean isDataDirectDriver()
-
setParameterValue
public boolean setParameterValue(int parameterIndex, java.lang.Class<?> type, java.lang.Object value) throws java.sql.SQLException- Specified by:
setParameterValuein interfaceProcedureCallHandler- Throws:
java.sql.SQLException
-
execute
public java.sql.ResultSet execute() throws java.sql.SQLException- Specified by:
executein interfaceProcedureCallHandler- Throws:
java.sql.SQLException
-
-