java.sql
Interface Ref


public interface Ref

This interface provides a mechanism for obtaining information about a SQL structured type

Since:
1.2

Method Summary
 String getBaseTypeName()
          This method returns the fully qualified name of the SQL structured type of the referenced item.
 Object getObject()
           
 Object getObject(Map<String,Class<?>> map)
           
 void setObject(Object value)
           
 

Method Detail

getBaseTypeName

String getBaseTypeName()
                       throws SQLException
This method returns the fully qualified name of the SQL structured type of the referenced item.

Returns:
The fully qualified name of the SQL structured type.
Throws:
SQLException - If an error occurs.
Since:
1.2

getObject

Object getObject(Map<String,Class<?>> map)
                 throws SQLException
Throws:
SQLException
Since:
1.4

getObject

Object getObject()
                 throws SQLException
Throws:
SQLException
Since:
1.4

setObject

void setObject(Object value)
               throws SQLException
Throws:
SQLException
Since:
1.4