AI-generated Key Takeaways
-  JdbcRef is a JDBC Refobject.
-  It has methods to get the base type name and the referenced object, as well as set the referenced object. 
-  Detailed documentation for its methods can be found in the java.sql.Refclass.
A JDBC Ref 
. For documentation of this class, see  java.sql.Ref 
 
.
Methods
| Method | Return type | Brief description | 
|---|---|---|
| String | For documentation of this method, see java.sql.Ref#getBaseTypeName(). | |
| Object | For documentation of this method, see java.sql.Ref#getObject(). | |
| void | For documentation of this method, see java.sql.Ref#setObject(Object). | 
Detailed documentation
 get  
 
 For documentation of this method, see  java.sql.Ref#getBaseTypeName() 
 
.
Return
 String 
— The fully-qualified SQL name of the SQL structured type this  Jdbc  
references.
 get  
 
 For documentation of this method, see  java.sql.Ref#getObject() 
 
.
Return
 Object 
— The object that this  Jdbc  
references.
 set  
 
 For documentation of this method, see  java.sql.Ref#setObject(Object) 
 
.
Parameters
| Name | Type | Description | 
|---|---|---|
| object | Object | The object to set as the refernence target. | 

