Class weblogic.jdbc.oci.CallableStatement
All Packages  

Class weblogic.jdbc.oci.CallableStatement

java.lang.Object
   |
   +----weblogic.jdbc.oci.Statement
           |
           +----weblogic.jdbc.oci.PreparedStatement
                   |
                   +----weblogic.jdbc.oci.CallableStatement

public class CallableStatement
extends PreparedStatement
implements CallableStatement
This class contains WebLogic extensions to JDBC to support the use of cursors as parameters in CallableStatements. Only those methods are documented here.
Version:
2.0
Author:
Copyright (c) 1996 by WebLogic, Inc.

Method Index

 o getResultSet(int)
Returns a ResultSet from a stored procedure where the specified parameter has been bound to an Oracle cursor.

Methods

 o getResultSet
  public ResultSet getResultSet(int parameterIndex) throws SQLException
Returns a ResultSet from a stored procedure where the specified parameter has been bound to an Oracle cursor. Register the output parameter with the registerOutputParameter() method, using java.sql.Types.OTHER as the data type.
Parameters:
parameterIndex - Index into the set of parameters for the stored procedure
Throws: SQLException
if the operation cannot be completed

All Packages