Package oracle.jdbc
Interface OracleStruct
-
- All Superinterfaces:
java.sql.Struct
- All Known Implementing Classes:
JAVA_STRUCT,STRUCT
public interface OracleStruct extends java.sql.StructThis 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 interfaceStructor this interface as required. For creating a new oracle.jdbc.OracleStruct usejava.sql.Connection#createStruct().- Since:
- 11.2.0.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleTypeMetaDatagetOracleMetaData()Oracle extension.
-
-
-
Method Detail
-
getOracleMetaData
OracleTypeMetaData getOracleMetaData() throws java.sql.SQLException
Oracle extension. Get the SQL STRUCT type metadata for the type of this object.- Returns:
- metadata for this object's type
- Throws:
java.sql.SQLException- if an error occurs
-
-