Interface SQLRecord

All Known Implementing Classes:
ImmutableSQLRecord

public interface SQLRecord
SQL record for insert / update.
  • Method Summary

    Modifier and Type
    Method
    Description
    Map<org.jooq.Field<?>,?>
    Returns the fields for the SQL record.
    List<org.jooq.Field<?>>
    Returns the column names that serve as keys for the SQL record.
  • Method Details

    • getKeyColumns

      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

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