Package org.jooq

Interface RowId

  • All Superinterfaces:
    java.io.Serializable

    public interface RowId
    extends java.io.Serializable
    A data type corresponding to JDBC's Types.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 a Merge statement and comparing the two versions of the table by ROWID.

    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.Object value()
      Get the database implementation specific representation of this row id.
    • Method Detail

      • value

        java.lang.Object value()
        Get the database implementation specific representation of this row id.