Uses of Class
org.jooq.util.maven.example.mysql.tables.records.TBookRecord

Packages that use TBookRecord
org.jooq.util.maven.example.mysql   
org.jooq.util.maven.example.mysql.tables   
org.jooq.util.maven.example.mysql.tables.records   
 

Uses of TBookRecord in org.jooq.util.maven.example.mysql
 

Fields in org.jooq.util.maven.example.mysql with type parameters of type TBookRecord
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,TLanguageRecord> Keys.FK_T_BOOK_LANGUAGE_ID
           
static org.jooq.UniqueKey<TBookRecord> Keys.KEY_T_BOOK_PRIMARY
           
 

Uses of TBookRecord in org.jooq.util.maven.example.mysql.tables
 

Fields in org.jooq.util.maven.example.mysql.tables with type parameters of type TBookRecord
 org.jooq.TableField<TBookRecord,Integer> TBook.AUTHOR_ID
          The author ID in entity 'author' CONSTRAINT fk_t_book_author_id FOREIGN KEY (AUTHOR_ID) REFERENCES test2.t_author (ID)
 org.jooq.TableField<TBookRecord,Integer> TBook.CO_AUTHOR_ID
          An uncommented item CONSTRAINT fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES test2.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
          Some more details about the book
 org.jooq.TableField<TBookRecord,Integer> TBook.ID
          The book ID PRIMARY KEY
 org.jooq.TableField<TBookRecord,Integer> TBook.LANGUAGE_ID
          The language of the book CONSTRAINT fk_t_book_language_id FOREIGN KEY (LANGUAGE_ID) REFERENCES test2.t_language (ID)
 org.jooq.TableField<TBookRecord,Integer> TBook.PUBLISHED_IN
          The year the book was published in
 org.jooq.TableField<TBookRecord,TBookStatus> TBook.STATUS
          The book's stock status
 org.jooq.TableField<TBookRecord,String> TBook.TITLE
          The book's title
 

Methods in org.jooq.util.maven.example.mysql.tables that return types with arguments of type TBookRecord
 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()
           
 

Uses of TBookRecord in org.jooq.util.maven.example.mysql.tables.records
 

Methods in org.jooq.util.maven.example.mysql.tables.records that return TBookRecord
 TBookRecord TBookToBookStoreRecord.fetchTBook()
          The book ID PRIMARY KEY CONSTRAINT fk_b2bs_b_id FOREIGN KEY (book_id) REFERENCES test2.t_book (ID)
 

Methods in org.jooq.util.maven.example.mysql.tables.records that return types with arguments of type TBookRecord
 List<TBookRecord> TLanguageRecord.fetchTBookList()
          The language ID PRIMARY KEY
 List<TBookRecord> TAuthorRecord.fetchTBookListByAuthorId()
          The author ID PRIMARY KEY
 List<TBookRecord> TAuthorRecord.fetchTBookListByCoAuthorId()
          The author ID PRIMARY KEY
 



Copyright © 2012. All Rights Reserved.