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

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

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

Fields in org.jooq.util.maven.example.postgres with type parameters of type TAuthorRecord
static org.jooq.UniqueKey<TAuthorRecord> Keys.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.postgres.tables
 

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

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

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



Copyright © 2012. All Rights Reserved.