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

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

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

Fields in org.jooq.util.maven.example.ase with type parameters of type TAuthorRecord
static org.jooq.UniqueKey<TAuthorRecord> Keys.T_AUTHOR__PK_T_AUTHOR
           
static org.jooq.ForeignKey<TBookRecord,TAuthorRecord> Keys.T_BOOK__FK_T_BOOK_AUTHOR_ID
           
static org.jooq.ForeignKey<TBookRecord,TAuthorRecord> Keys.T_BOOK__FK_T_BOOK_CO_AUTHOR_ID
           
 

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

Fields in org.jooq.util.maven.example.ase.tables with type parameters of type TAuthorRecord
 org.jooq.TableField<TAuthorRecord,String> TAuthor.ADDRESS
          An uncommented item
 org.jooq.TableField<TAuthorRecord,Date> TAuthor.DATE_OF_BIRTH
          An uncommented item
 org.jooq.TableField<TAuthorRecord,String> TAuthor.FIRST_NAME
          An uncommented item
 org.jooq.TableField<TAuthorRecord,Integer> TAuthor.ID
          An uncommented item PRIMARY KEY
 org.jooq.TableField<TAuthorRecord,String> TAuthor.LAST_NAME
          An uncommented item
 org.jooq.TableField<TAuthorRecord,Integer> TAuthor.YEAR_OF_BIRTH
          An uncommented item
 

Methods in org.jooq.util.maven.example.ase.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.ase.tables.records
 

Methods in org.jooq.util.maven.example.ase.tables.records that return TAuthorRecord
 TAuthorRecord TBookRecord.fetchTAuthorByAuthorId()
          An uncommented item CONSTRAINT t_book__fk_t_book_author_id FOREIGN KEY (author_id) REFERENCES dbo.t_author (id)
 TAuthorRecord TBookRecord.fetchTAuthorByCoAuthorId()
          An uncommented item CONSTRAINT t_book__fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES dbo.t_author (id)
 



Copyright © 2012. All Rights Reserved.