Package | Description |
---|---|
oracle.jdbc |
Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the package
oracle.jdbc . |
oracle.sql |
A package of classes that represent java SQL types and Oracle specific SQL types.
|
Modifier and Type | Method | Description |
---|---|---|
ARRAY |
OracleConnection.createARRAY(String typeName, Object elements) |
Creates an ARRAY object with the given type name and elements.
|
ARRAY |
OracleConnectionWrapper.createARRAY(String typeName, Object elements) |
Creates an ARRAY object with the given type name and elements.
|
ARRAY |
OracleCallableStatement.getARRAY(int parameterIndex) |
Retrieves data into an
oracle.sql.ARRAY object. |
ARRAY |
OracleResultSet.getARRAY(int columnIndex) |
Oracle extension.
|
ARRAY |
OracleResultSet.getARRAY(String columnName) |
Oracle extension.
|
Modifier and Type | Method | Description |
---|---|---|
void |
OracleCallableStatement.setARRAY(String parameterName, ARRAY x) |
Sets the designated parameter to an
oracle.sql.ARRAY value. |
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.
|
Modifier and Type | Method | Description |
---|---|---|
ResultSet |
ArrayDescriptor.toResultSet(ARRAY array, long index, int count, Map map, boolean saveLocalCopy) |
Deprecated.
|