| 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,TAuthorRecord> |
Keys.FK_T_BOOK_AUTHOR_ID |
static org.jooq.ForeignKey<TBookRecord,TAuthorRecord> |
Keys.FK_T_BOOK_CO_AUTHOR_ID |
static org.jooq.UniqueKey<TAuthorRecord> |
Keys.PK_T_AUTHOR |
| Modifier and Type | Field and Description |
|---|---|
org.jooq.TableField<TAuthorRecord,String> |
TAuthor.ADDRESS
The author's address
|
org.jooq.TableField<TAuthorRecord,Timestamp> |
TAuthor.DATE_OF_BIRTH
The author's date of birth
|
org.jooq.TableField<TAuthorRecord,String> |
TAuthor.FIRST_NAME
The author's first name
|
org.jooq.TableField<TAuthorRecord,Integer> |
TAuthor.ID
The author ID
This column is part of the table's PRIMARY KEY
|
org.jooq.TableField<TAuthorRecord,String> |
TAuthor.LAST_NAME
The author's last name
|
org.jooq.TableField<TAuthorRecord,Integer> |
TAuthor.YEAR_OF_BIRTH
The author's year of birth
|
| Modifier and Type | Method and Description |
|---|---|
List<org.jooq.UniqueKey<TAuthorRecord>> |
TAuthor.getKeys() |
org.jooq.UniqueKey<TAuthorRecord> |
TAuthor.getMainKey() |
Class<TAuthorRecord> |
TAuthor.getRecordType()
The class holding records for this type
|
| Modifier and Type | Method and Description |
|---|---|
TAuthorRecord |
TBookRecord.fetchTAuthorByAuthorId()
The author ID in entity 'author'
This column is part of a FOREIGN KEY:
CONSTRAINT FK_T_BOOK_AUTHOR_ID
FOREIGN KEY (AUTHOR_ID)
REFERENCES PUBLIC.T_AUTHOR (ID)
|
TAuthorRecord |
TBookRecord.fetchTAuthorByCoAuthorId()
The table column
PUBLIC.T_BOOK.CO_AUTHOR_ID
This column is part of a FOREIGN KEY:
CONSTRAINT FK_T_BOOK_CO_AUTHOR_ID
FOREIGN KEY (CO_AUTHOR_ID)
REFERENCES PUBLIC.T_AUTHOR (ID)
|
| Modifier and Type | Method and Description |
|---|---|
void |
TBookRecord.setAuthorId(TAuthorRecord value)
Link this record to a given
TAuthorRecord |
void |
TBookRecord.setCoAuthorId(TAuthorRecord value)
Link this record to a given
TAuthorRecord |
Copyright © 2012. All Rights Reserved.