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

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

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

Fields in org.jooq.util.maven.example.mysql with type parameters of type TAuthorRecord
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.KEY_T_AUTHOR_PRIMARY
           
 

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

Fields in org.jooq.util.maven.example.mysql.tables with type parameters of type TAuthorRecord
 org.jooq.TableField<TAuthorRecord,String> TAuthor.ADDRESS
          The author's address
 org.jooq.TableField<TAuthorRecord,Date> 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 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
 

Methods in org.jooq.util.maven.example.mysql.tables that return types with arguments of type TAuthorRecord
 List<org.jooq.UniqueKey<TAuthorRecord>> TAuthor.getKeys()
           
 org.jooq.UniqueKey<TAuthorRecord> TAuthor.getMainKey()
           
 Class<TAuthorRecord> TAuthor.getRecordType()
          The class holding records for this type
 

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

Methods in org.jooq.util.maven.example.mysql.tables.records that return TAuthorRecord
 TAuthorRecord TBookRecord.fetchTAuthorByAuthorId()
          The author ID in entity 'author' CONSTRAINT fk_t_book_author_id FOREIGN KEY (AUTHOR_ID) REFERENCES test2.t_author (ID)
 TAuthorRecord TBookRecord.fetchTAuthorByCoAuthorId()
          An uncommented item CONSTRAINT fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES test2.t_author (ID)
 



Copyright © 2012. All Rights Reserved.