| 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<TBookToBookStoreRecord,TBookRecord> |
Keys.FK_B2BS_B_ID |
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.ForeignKey<TBookRecord,TBookDetailsRecord> |
Keys.FK_T_BOOK_DETAILS_ID |
static org.jooq.ForeignKey<TBookRecord,TLanguageRecord> |
Keys.FK_T_BOOK_LANGUAGE_ID |
static org.jooq.UniqueKey<TBookRecord> |
Keys.PK_T_BOOK |
| Modifier and Type | Field and Description |
|---|---|
org.jooq.TableField<TBookRecord,Integer> |
TBook.AUTHOR_ID
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)
|
org.jooq.TableField<TBookRecord,Integer> |
TBook.CO_AUTHOR_ID
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)
|
org.jooq.TableField<TBookRecord,byte[]> |
TBook.CONTENT_PDF
Some binary content of the book
|
org.jooq.TableField<TBookRecord,String> |
TBook.CONTENT_TEXT
Some textual content of the book
|
org.jooq.TableField<TBookRecord,Integer> |
TBook.DETAILS_ID
The table column
PUBLIC.T_BOOK.DETAILS_ID
This column is part of a FOREIGN KEY:
CONSTRAINT FK_T_BOOK_DETAILS_ID
FOREIGN KEY (DETAILS_ID)
REFERENCES PUBLIC.T_BOOK_DETAILS (ID)
|
org.jooq.TableField<TBookRecord,Integer> |
TBook.ID
The book ID
This column is part of the table's PRIMARY KEY
|
org.jooq.TableField<TBookRecord,Integer> |
TBook.LANGUAGE_ID
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)
|
org.jooq.TableField<TBookRecord,Integer> |
TBook.PUBLISHED_IN
The year the book was published in
|
org.jooq.TableField<TBookRecord,Timestamp> |
TBook.REC_TIMESTAMP
The table column
PUBLIC.T_BOOK.REC_TIMESTAMP |
org.jooq.TableField<TBookRecord,Integer> |
TBook.REC_VERSION
The table column
PUBLIC.T_BOOK.REC_VERSION |
org.jooq.TableField<TBookRecord,String> |
TBook.TITLE
The book's title
|
| Modifier and Type | Method and Description |
|---|---|
List<org.jooq.UniqueKey<TBookRecord>> |
TBook.getKeys() |
org.jooq.UniqueKey<TBookRecord> |
TBook.getMainKey() |
Class<TBookRecord> |
TBook.getRecordType()
The class holding records for this type
|
List<org.jooq.ForeignKey<TBookRecord,?>> |
TBook.getReferences() |
| Modifier and Type | Method and Description |
|---|---|
TBookRecord |
TBookToBookStoreRecord.fetchTBook()
The book ID
This column is part of the table's PRIMARY KEY
This column is part of a FOREIGN KEY:
CONSTRAINT FK_B2BS_B_ID
FOREIGN KEY (BOOK_ID)
REFERENCES PUBLIC.T_BOOK (ID)
|
| Modifier and Type | Method and Description |
|---|---|
List<TBookRecord> |
TLanguageRecord.fetchTBookList()
The language ID
This column is part of the table's PRIMARY KEY
|
List<TBookRecord> |
TBookDetailsRecord.fetchTBookList()
The table column
PUBLIC.T_BOOK_DETAILS.ID
This column is part of the table's PRIMARY KEY |
List<TBookRecord> |
TAuthorRecord.fetchTBookListByAuthorId()
The author ID
This column is part of the table's PRIMARY KEY
|
List<TBookRecord> |
TAuthorRecord.fetchTBookListByCoAuthorId()
The author ID
This column is part of the table's PRIMARY KEY
|
| Modifier and Type | Method and Description |
|---|---|
void |
TBookToBookStoreRecord.setBookId(TBookRecord value)
Link this record to a given
TBookRecord |
Copyright © 2012. All Rights Reserved.