Package oracle.jdbc
Interface OracleStruct
-
- All Superinterfaces:
Struct
- All Known Implementing Classes:
JAVA_STRUCT
,STRUCT
public interface OracleStruct extends Struct
This interface defines the Oracle extensions to the standard JDBC interfaceStruct
.Generally any new code should avoid the direct use of the class
STRUCT
. For variable declarations use the interfaceStruct
or this interface as required. For creating a new oracle.jdbc.OracleStruct useConnection
.- Since:
- 11.2.0.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleTypeMetaData
getOracleMetaData()
Oracle extension.-
Methods inherited from interface java.sql.Struct
getAttributes, getAttributes, getSQLTypeName
-
-
-
-
Method Detail
-
getOracleMetaData
OracleTypeMetaData getOracleMetaData() throws SQLException
Oracle extension. Get the SQL STRUCT type metadata for the type of this object.- Returns:
- metadata for this object's type
- Throws:
SQLException
- if an error occurs
-
-