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 |
---|---|---|
ORAData |
OracleResultSet.getORAData(int columnIndex, ORADataFactory factory) |
Oracle extension.
|
ORAData |
OracleResultSet.getORAData(String columnName, ORADataFactory factory) |
Oracle extension.
|
Modifier and Type | Method | Description |
---|---|---|
void |
OracleCallableStatement.setORAData(String parameterName, ORAData x) |
Sets the designated parameter to an
oracle.sql.ORAData value. |
void |
OraclePreparedStatement.setORAData(int parameterIndex, ORAData x) |
Binds the designated parameter to a
oracle.sql.ORAData value. |
void |
OraclePreparedStatement.setORADataAtName(String parameterName, ORAData value) |
Sets the designated parameter to an
oracle.sql.ORAData value. |
void |
OracleResultSet.updateORAData(int columnIndex, ORAData value) |
Oracle extension.
|
void |
OracleResultSet.updateORAData(String columnName, ORAData value) |
Oracle extension.
|
Modifier and Type | Class | Description |
---|---|---|
class |
ANYDATA |
This class is the Java mapping of the SYS.ANYDATA SQL type.
|
class |
ArrayDescriptor |
Deprecated.
Use factory method OracleConnection.createOracleArray to create an instance of java.sql.Array directly.
|
class |
OpaqueDescriptor |
Deprecated.
OPAQUE types cannot be created on the client side.
|
class |
StructDescriptor |
Deprecated.
Use factory method Connection.createStruct to create an instance of java.sql.Struct directly.
|
class |
TypeDescriptor |
The descriptor of pre-defined types.
|
Modifier and Type | Method | Description |
---|---|---|
ORAData |
ORADataFactory.create(Datum d, int sqlType) |
Create an ORAData from a oracle.sql.Datum
|