Package org.jooq
Interface RowId
-
- All Superinterfaces:
java.io.Serializable
public interface RowId extends java.io.SerializableA data type corresponding to JDBC'sTypes.ROWID.In certain RDBMS, referencing a row by its
ROWIDmay be quicker than looking it up by a primary key. This can be particularly useful when self joining a table in aMergestatement 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 java.lang.Objectvalue()Get the database implementation specific representation of this row id.
-