Uses of Interface
org.jooq.TableField

Packages that use TableField
org.jooq   
org.jooq.impl   
 

Uses of TableField in org.jooq
 

Methods in org.jooq that return TableField
 TableField<R,T> Identity.getField()
          The IDENTITY column.
 TableField<R,?>[] Key.getFieldsArray()
          The fields that make up the KEY
 

Methods in org.jooq that return types with arguments of type TableField
 List<TableField<R,?>> Key.getFields()
          The fields that make up the KEY
 

Methods in org.jooq with parameters of type TableField
 void SelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, TableField<?,?>... keyFields)
          Joins the existing table product to a new table using a foreign key
 int TableRecord.deleteUsing(TableField<R,?>... keys)
          Deletes this record from the database, based on the value of the provided keys.
 TableOnConditionStep TableOnStep.onKey(TableField<?,?>... keyFields)
          Join the table on a non-ambiguous foreign key relationship between the two joined tables.
 SelectJoinStep SelectOnStep.onKey(TableField<?,?>... keyFields)
          Join the previous table on a non-ambiguous foreign key relationship between the two joined tables.
 void TableRecord.refreshUsing(TableField<R,?>... keys)
          Refresh this record from the database, based on the value of the provided keys.
 int TableRecord.storeUsing(TableField<R,?>... keys)
          Store this record back to the database.
 

Uses of TableField in org.jooq.impl
 

Methods in org.jooq.impl with parameters of type TableField
protected static
<R extends Record,U extends Record>
ForeignKey<R,U>
AbstractKeys.createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)
          Factory method for foreign keys
protected static
<R extends Record,T>
Identity<R,T>
AbstractKeys.createIdentity(Table<R> table, TableField<R,T> field)
          Factory method for identities
protected static
<R extends Record>
UniqueKey<R>
AbstractKeys.createUniqueKey(Table<R> table, TableField<R,?>... fields)
          Factory method for unique keys
 int TableRecordImpl.deleteUsing(TableField<R,?>... keys)
           
 void TableRecordImpl.refreshUsing(TableField<R,?>... keys)
           
 int TableRecordImpl.storeUsing(TableField<R,?>... keys)
           
 



Copyright © 2012. All Rights Reserved.