-
- All Superinterfaces:
Serializable
public interface RowId extends Serializable
A data type corresponding to JDBC'sTypes.ROWID
.In certain RDBMS, referencing a row by its
ROWID
may be quicker than looking it up by a primary key. This can be particularly useful when self joining a table in aMerge
statement and comparing the two versions of the table byROWID
.Instances can be created using
Table.rowid()
.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
value()
Get the database implementation specific representation of this row id.
-
-
-
Method Detail
-
value
Object value()
Get the database implementation specific representation of this row id.
-
-