Uses of Class
oracle.sql.ARRAY

Packages that use ARRAY
Package
Description
Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the package oracle.jdbc.
A package of classes that represent java SQL types and Oracle specific SQL types.
  • Uses of ARRAY in oracle.jdbc

    Methods in oracle.jdbc that return ARRAY
    Modifier and Type
    Method
    Description
    OracleConnection.createARRAY(String typeName, Object elements)
    Creates an ARRAY object with the given type name and elements.
    OracleConnectionWrapper.createARRAY(String typeName, Object elements)
    Creates an ARRAY object with the given type name and elements.
    OracleCallableStatement.getARRAY(int parameterIndex)
    Retrieves data into an oracle.sql.ARRAY object.
    OracleResultSet.getARRAY(int columnIndex)
    Oracle extension.
    OracleResultSet.getARRAY(String columnName)
    Oracle extension.
    Methods in oracle.jdbc with parameters of type ARRAY
    Modifier and Type
    Method
    Description
    void
    OracleCallableStatement.setARRAY(String parameterName, ARRAY x)
    Sets the designated parameter to an oracle.sql.ARRAYvalue.
    void
    OraclePreparedStatement.setARRAY(int parameterIndex, ARRAY arr)
    Binds the designated parameter to a oracle.sql.ARRAY.
    void
    OraclePreparedStatement.setARRAYAtName(String parameterName, ARRAY value)
    Sets the designated parameter to a oracle.sql.ARRAY value.
    void
    OracleResultSet.updateARRAY(int columnIndex, ARRAY value)
    Oracle extension.
    void
    OracleResultSet.updateARRAY(String columnName, ARRAY value)
    Oracle extension.
  • Uses of ARRAY in oracle.sql

    Methods in oracle.sql with parameters of type ARRAY
    Modifier and Type
    Method
    Description
    ArrayDescriptor.toResultSet(ARRAY array, long index, int count, Map map, boolean saveLocalCopy)
    Deprecated.