-
Methods in java.sql that return RowId
| Modifier and Type |
Method |
Description |
RowId |
CallableStatement.getRowId(int parameterIndex) |
Gets the value of a specified ROWID parameter as a
java.sql.RowId.
|
RowId |
CallableStatement.getRowId(String parameterName) |
Returns the value of the specified SQL ROWID parameter as a
java.sql.RowId.
|
RowId |
ResultSet.getRowId(int columnIndex) |
Returns a RowId corresponding to the SQL ROWID at the 1-based columnIndex.
|
RowId |
ResultSet.getRowId(String columnLabel) |
Returns a RowId corresponding to the SQL ROWID at the named column.
|
RowId |
SQLInput.readRowId() |
Returns the next attribute in the stream in the form of a
java.sql.RowId.
|
Methods in java.sql with parameters of type RowId
| Modifier and Type |
Method |
Description |
void |
CallableStatement.setRowId(String parameterName,
RowId rowId) |
Sets the named parameter to the given rowId.
|
void |
PreparedStatement.setRowId(int parameterIndex,
RowId theRowId) |
Sets the value of a specified parameter to a supplied
java.sql.RowId.
|
void |
ResultSet.updateRowId(int columnIndex,
RowId value) |
Updates the value at the 1-based columnIndex.
|
void |
ResultSet.updateRowId(String columnLabel,
RowId value) |
Updates the value in the named column.
|
void |
SQLOutput.writeRowId(RowId theRowId) |
Write a RowId into the output stream as an SQL ROWID.
|
-
Methods in javax.sql with parameters of type RowId
| Modifier and Type |
Method |
Description |
void |
RowSet.setRowId(int parameterIndex,
RowId theRowId) |
Sets the value of the specified parameter in the RowSet command to the
supplied RowId
|
void |
RowSet.setRowId(String parameterName,
RowId theRowId) |
Sets the value of the specified parameter in the RowSet command to the
supplied RowId.
|
-