Uses of Interface
oracle.sql.ORAData
-
Packages that use ORAData Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc
.oracle.sql A package of classes that represent java SQL types and Oracle specific SQL types. -
-
Uses of ORAData in oracle.jdbc
Methods in oracle.jdbc that return ORAData Modifier and Type Method Description ORAData
OracleResultSet. getORAData(int columnIndex, ORADataFactory factory)
Oracle extension.ORAData
OracleResultSet. getORAData(String columnName, ORADataFactory factory)
Oracle extension.Methods in oracle.jdbc with parameters of type ORAData Modifier and Type Method Description void
OracleCallableStatement. setORAData(String parameterName, ORAData x)
Sets the designated parameter to anoracle.sql.ORAData
value.void
OraclePreparedStatement. setORAData(int parameterIndex, ORAData x)
Binds the designated parameter to aoracle.sql.ORAData
value.void
OraclePreparedStatement. setORADataAtName(String parameterName, ORAData value)
Sets the designated parameter to anoracle.sql.ORAData
value.void
OracleResultSet. updateORAData(int columnIndex, ORAData value)
Oracle extension.void
OracleResultSet. updateORAData(String columnName, ORAData value)
Oracle extension. -
Uses of ORAData in oracle.sql
Classes in oracle.sql that implement ORAData 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.Methods in oracle.sql that return ORAData Modifier and Type Method Description ORAData
ORADataFactory. create(Datum d, int sqlType)
Create an ORAData from a oracle.sql.Datum
-