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
 TableField<R,? extends Date> UpdatableTable.getRecordTimestamp()
          A "timestamp" field holding record timestamp information used for optimistic locking jOOQ supports optimistic locking in UpdatableRecord.store() and UpdatableRecord.delete() if Settings.isExecuteWithOptimisticLocking() is enabled.
 TableField<R,? extends Number> UpdatableTable.getRecordVersion()
          A "version" field holding record version information used for optimistic locking jOOQ supports optimistic locking in UpdatableRecord.store() and UpdatableRecord.delete() if Settings.isExecuteWithOptimisticLocking() is enabled.
 

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)
          Deprecated. - 2.5.0 [#1736] - These methods will be made part of jOOQ's internal API soon. Do not reuse these methods.
 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)
          Deprecated. - 2.5.0 [#1736] - These methods will be made part of jOOQ's internal API soon. Do not reuse these methods.
 int TableRecord.storeUsing(TableField<R,?>... keys)
          Deprecated. - 2.5.0 [#1736] - These methods will be made part of jOOQ's internal API soon. Do not reuse these methods.
 

Uses of TableField in org.jooq.impl
 

Methods in org.jooq.impl that return TableField
 TableField<R,? extends Date> UpdatableTableImpl.getRecordTimestamp()
          A "timestamp" field holding record timestamp information used for optimistic locking jOOQ supports optimistic locking in UpdatableRecord.store() and UpdatableRecord.delete() if Settings.isExecuteWithOptimisticLocking() is enabled.
 TableField<R,? extends Number> UpdatableTableImpl.getRecordVersion()
          A "version" field holding record version information used for optimistic locking jOOQ supports optimistic locking in UpdatableRecord.store() and UpdatableRecord.delete() if Settings.isExecuteWithOptimisticLocking() is enabled.
 

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.