-
Methods in java.sql that return Ref
| Modifier and Type |
Method |
Description |
Ref |
CallableStatement.getRef(int parameterIndex) |
Gets the value of a specified SQL REF(<structured type>)
parameter as a java.sql.Ref.
|
Ref |
CallableStatement.getRef(String parameterName) |
Gets the value of a specified SQL REF(<structured type>)
parameter as a java.sql.Ref.
|
Ref |
ResultSet.getRef(int columnIndex) |
Gets the value of a column specified by column index as a Java
java.sql.Ref.
|
Ref |
ResultSet.getRef(String colName) |
Gets the value of a column specified by column name as a Java
java.sql.Ref.
|
Ref |
SQLInput.readRef() |
Returns the next attribute in the stream in the form of a
java.sql.Ref.
|
Methods in java.sql with parameters of type Ref
| Modifier and Type |
Method |
Description |
void |
PreparedStatement.setRef(int parameterIndex,
Ref theRef) |
Sets the value of a specified parameter to a supplied
REF(<structured-type>) value.
|
void |
ResultSet.updateRef(int columnIndex,
Ref x) |
Updates a column specified by a column index with a java.sql.Ref
value.
|
void |
ResultSet.updateRef(String columnName,
Ref x) |
Updates a column specified by a column name with a java.sql.Ref
value.
|
void |
SQLOutput.writeRef(Ref theRef) |
Write an SQL Ref value into the output stream.
|
-
Methods in javax.sql with parameters of type Ref
| Modifier and Type |
Method |
Description |
void |
RowSet.setRef(int parameterIndex,
Ref theRef) |
Sets the value of the specified parameter in the RowSet command
to a supplied java.sql.Ref.
|
-