Uses of Interface
org.jooq.UpdatableRecord

Packages that use UpdatableRecord
org.jooq   
org.jooq.impl   
 

Uses of UpdatableRecord in org.jooq
 

Classes in org.jooq with type parameters of type UpdatableRecord
 interface UpdatableRecord<R extends UpdatableRecord<R>>
          A common interface for records that can be stored back to the database again.
 

Methods in org.jooq with type parameters of type UpdatableRecord
<R extends UpdatableRecord<R>>
int
FactoryOperations.executeDelete(R record)
          Delete a record from a table DELETE FROM [table] WHERE [record is supplied record]
<R extends UpdatableRecord<R>>
int
FactoryOperations.executeUpdate(R record)
          Update a table UPDATE [table] SET [modified values in record] WHERE [record is supplied record]
 

Methods in org.jooq with parameters of type UpdatableRecord
 Batch FactoryOperations.batchStore(UpdatableRecord<?>... records)
          Execute a set of INSERT and UPDATE queries in batch mode (with bind values).
 

Method parameters in org.jooq with type arguments of type UpdatableRecord
 Batch FactoryOperations.batchStore(Collection<? extends UpdatableRecord<?>> records)
          Execute a set of INSERT and UPDATE queries in batch mode (with bind values).
 

Uses of UpdatableRecord in org.jooq.impl
 

Classes in org.jooq.impl with type parameters of type UpdatableRecord
 class DAOImpl<R extends UpdatableRecord<R>,P,T>
          A common base implementation for generated DAO's
 class UpdatableRecordImpl<R extends UpdatableRecord<R>>
          A record implementation for a record holding a primary key This type is for JOOQ INTERNAL USE only.
 

Classes in org.jooq.impl that implement UpdatableRecord
 class UpdatableRecordImpl<R extends UpdatableRecord<R>>
          A record implementation for a record holding a primary key This type is for JOOQ INTERNAL USE only.
 

Methods in org.jooq.impl with type parameters of type UpdatableRecord
<R extends UpdatableRecord<R>>
int
FactoryProxy.executeDelete(R record)
          Deprecated.  
<R extends UpdatableRecord<R>>
int
Factory.executeDelete(R record)
          Delete a record from a table DELETE FROM [table] WHERE [record is supplied record]
<R extends UpdatableRecord<R>>
int
FactoryProxy.executeUpdate(R record)
          Deprecated.  
<R extends UpdatableRecord<R>>
int
Factory.executeUpdate(R record)
          Update a table UPDATE [table] SET [modified values in record] WHERE [record is supplied record]
 

Methods in org.jooq.impl with parameters of type UpdatableRecord
 Batch FactoryProxy.batchStore(UpdatableRecord<?>... records)
          Deprecated.  
 Batch Factory.batchStore(UpdatableRecord<?>... records)
          Execute a set of INSERT and UPDATE queries in batch mode (with bind values).
 

Method parameters in org.jooq.impl with type arguments of type UpdatableRecord
 Batch FactoryProxy.batchStore(Collection<? extends UpdatableRecord<?>> records)
          Deprecated.  
 Batch Factory.batchStore(Collection<? extends UpdatableRecord<?>> records)
          Execute a set of INSERT and UPDATE queries in batch mode (with bind values).
 



Copyright © 2012. All Rights Reserved.