Package oracle.jdbc
Interface OracleRef
- 
- All Superinterfaces:
- Ref
 - All Known Implementing Classes:
- REF
 
 public interface OracleRef extends Ref This interface defines the Oracle extensions to the standard JDBC interfaceRef.Generally any new code should avoid the direct use of the class REF. For variable declarations use the interfaceRefor this interface as required.Obtaining java.sql.Ref from ResultSet java.sql.Ref ref = resultSet.getRef(...);There is no way to create Refon the client side.- Since:
- 11.2.0.3
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleTypeMetaDatagetOracleMetaData()Oracle extension.- 
Methods inherited from interface java.sql.RefgetBaseTypeName, getObject, getObject, setObject
 
- 
 
- 
- 
- 
Method Detail- 
getOracleMetaDataOracleTypeMetaData getOracleMetaData() throws SQLException Oracle extension. Get the SQL REF type metadata for the type of this object.- Returns:
- metadata for this object's type
- Throws:
- SQLException- if an error occurs
 
 
- 
 
-