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' FOREIGN KEY [test.t_book.AUTHOR_ID] REFERENCES t_author [test.t_author.ID]
 TAuthorRecord TBookRecord.fetchTAuthorByCoAuthorId()
          An uncommented item FOREIGN KEY [test.t_book.co_author_id] REFERENCES t_author [test.t_author.ID]
 



Copyright © 2012. All Rights Reserved.