|
|||||||||
| Home >> All >> java >> [ sql overview ] | PREV NEXT | ||||||||
Uses of Interface
java.sql.Ref
| Uses of Ref in java.sql |
| Methods in java.sql that return Ref | |
Ref |
SQLInput.readRef()
This method reads the next item from the stream a Java SQL Ref. |
Ref |
ResultSet.getRef(int columnIndex)
This method returns a Ref for the specified column which
represents the structured type for the column. |
Ref |
ResultSet.getRef(java.lang.String columnName)
This method returns a Ref for the specified column which
represents the structured type for the column. |
Ref |
CallableStatement.getRef(int index)
This method returns the value of the specified parameter as a Java Ref. |
Ref |
CallableStatement.getRef(java.lang.String name)
This method returns the value of the specified parameter as a Java Ref. |
| Methods in java.sql with parameters of type Ref | |
void |
SQLOutput.writeRef(Ref value)
This method writes the specified Java SQL Ref object
to the SQL stream. |
void |
ResultSet.updateRef(int columnIndex,
Ref value)
This method updates the specified column to have a java.sql.Ref value. |
void |
ResultSet.updateRef(java.lang.String columnName,
Ref value)
This method updates the specified column to have a java.sql.Ref value. |
void |
PreparedStatement.setRef(int index,
Ref value)
This method sets the specified parameter from the given Java Ref value. |
|
|||||||||
| Home >> All >> java >> [ sql overview ] | PREV NEXT | ||||||||