| Package | Description |
|---|---|
| org.jooq.scala.example.h2 | |
| org.jooq.scala.example.h2.tables | |
| org.jooq.scala.example.h2.tables.records |
| Modifier and Type | Field and Description |
|---|---|
static org.jooq.ForeignKey<TBookRecord,TLanguageRecord> |
Keys.FK_T_BOOK_LANGUAGE_ID |
static org.jooq.UniqueKey<TLanguageRecord> |
Keys.PK_T_LANGUAGE |
| Modifier and Type | Field and Description |
|---|---|
org.jooq.TableField<TLanguageRecord,String> |
TLanguage.CD
The language ISO code
|
org.jooq.TableField<TLanguageRecord,String> |
TLanguage.DESCRIPTION
The language description
|
org.jooq.TableField<TLanguageRecord,String> |
TLanguage.DESCRIPTION_ENGLISH
The table column
PUBLIC.T_LANGUAGE.DESCRIPTION_ENGLISH |
org.jooq.TableField<TLanguageRecord,Integer> |
TLanguage.ID
The language ID
This column is part of the table's PRIMARY KEY
|
| Modifier and Type | Method and Description |
|---|---|
List<org.jooq.UniqueKey<TLanguageRecord>> |
TLanguage.getKeys() |
org.jooq.UniqueKey<TLanguageRecord> |
TLanguage.getMainKey() |
Class<TLanguageRecord> |
TLanguage.getRecordType()
The class holding records for this type
|
| Modifier and Type | Method and Description |
|---|---|
TLanguageRecord |
TBookRecord.fetchTLanguage()
The language of the book
This column is part of a FOREIGN KEY:
CONSTRAINT FK_T_BOOK_LANGUAGE_ID
FOREIGN KEY (LANGUAGE_ID)
REFERENCES PUBLIC.T_LANGUAGE (ID)
|
| Modifier and Type | Method and Description |
|---|---|
void |
TBookRecord.setLanguageId(TLanguageRecord value)
Link this record to a given
TLanguageRecord |
Copyright © 2012. All Rights Reserved.