Interface SQLRecord

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Map<org.jooq.Field<?>,​?> getFields()
      Returns the fields for the SQL record.
      java.util.List<org.jooq.Field<?>> getKeyColumns()
      Returns the column names that serve as keys for the SQL record.
    • Method Detail

      • getKeyColumns

        java.util.List<org.jooq.Field<?>> getKeyColumns()
        Returns the column names that serve as keys for the SQL record. Must be included in the returned fields.
        Returns:
        The key column names, one or more. Never empty.
      • getFields

        java.util.Map<org.jooq.Field<?>,​?> getFields()
        Returns the fields for the SQL record.
        Returns:
        The fields. Never empty.