Uses of Interface
org.jooq.TableRecord

Packages that use TableRecord
org.jooq   
org.jooq.impl   
 

Uses of TableRecord in org.jooq
 

Classes in org.jooq with type parameters of type TableRecord
 interface DAO<R extends TableRecord<R>,P,T>
          A generic DAO interface for a pojo and a primary key type.
 interface Loader<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderCSVOptionsStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderCSVStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderLoadStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderOptionsStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderSourceStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface LoaderXMLStep<R extends TableRecord<R>>
          The Loader API is used for configuring data loads.
 interface TableRecord<R extends TableRecord<R>>
          A record originating from a single table
 

Subinterfaces of TableRecord in org.jooq
 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 TableRecord
<R extends TableRecord<R>,T>
int
FactoryOperations.executeDelete(R record, Condition condition)
          Delete a record from a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryOperations.executeDelete(Table<R> table)
          Deprecated. - 2.5.0 [#1692] - The semantics of FactoryOperations.executeDelete(TableRecord, Condition) has changed. This method here is no longer necessary.
<R extends TableRecord<R>,T>
int
FactoryOperations.executeDelete(Table<R> table, Condition condition)
          Deprecated. - 2.5.0 [#1692] - The semantics of FactoryOperations.executeDelete(TableRecord, Condition) has changed. This method here is no longer necessary.
<R extends TableRecord<R>>
int
FactoryOperations.executeDeleteOne(Table<R> table)
          Deprecated. - 2.5.0 [#1692] - The semantics of FactoryOperations.executeDelete(TableRecord, Condition) has changed. This method here is no longer necessary.
<R extends TableRecord<R>,T>
int
FactoryOperations.executeDeleteOne(Table<R> table, Condition condition)
          Deprecated. - 2.5.0 [#1692] - The semantics of FactoryOperations.executeDelete(TableRecord, Condition) has changed. This method here is no longer necessary.
<R extends TableRecord<R>>
int
FactoryOperations.executeInsert(R record)
          Insert one record This executes something like the following statement: INSERT INTO [table] ...
<R extends TableRecord<R>>
int
FactoryOperations.executeInsert(Table<R> table, R record)
          Deprecated. - 2.5.0 [#1692] - Use FactoryOperations.executeInsert(TableRecord) instead
<R extends TableRecord<R>,T>
int
FactoryOperations.executeUpdate(R record, Condition condition)
          Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryOperations.executeUpdate(Table<R> table, R record)
          Deprecated. - 2.5.0 [#1692] - This "mass" update is no longer supported
<R extends TableRecord<R>,T>
int
FactoryOperations.executeUpdate(Table<R> table, R record, Condition condition)
          Deprecated. - 2.5.0 [#1692] - Use FactoryOperations.executeUpdate(TableRecord, Condition) instead
<R extends TableRecord<R>>
int
FactoryOperations.executeUpdateOne(Table<R> table, R record)
          Deprecated. - 2.5.0 [#1692] - This "mass" update is no longer supported
<R extends TableRecord<R>,T>
int
FactoryOperations.executeUpdateOne(Table<R> table, R record, Condition condition)
          Deprecated. - 2.5.0 [#1692] - The semantics of FactoryOperations.executeUpdate(TableRecord, Condition) has changed. This method here is no longer necessary.
<R extends TableRecord<R>>
LoaderOptionsStep<R>
FactoryOperations.loadInto(Table<R> table)
          Create a new Loader object to load data from a CSV or XML source
<R extends TableRecord<R>>
R
FactoryOperations.newRecord(Table<R> table)
          Create a new Record that can be inserted into the corresponding table.
<R extends TableRecord<R>>
R
FactoryOperations.newRecord(Table<R> table, Object source)
          Create a new pre-filled Record that can be inserted into the corresponding table.
 

Uses of TableRecord in org.jooq.impl
 

Classes in org.jooq.impl with type parameters of type TableRecord
 class CustomRecord<R extends TableRecord<R>>
          A base class for custom TableRecord implementations in client code.
 class CustomTable<R extends TableRecord<R>>
          A base class for custom Table implementations in client code.
 class TableRecordImpl<R extends TableRecord<R>>
          A record implementation for a record originating from a single table This type is for JOOQ INTERNAL USE only.
 

Classes in org.jooq.impl that implement TableRecord
 class CustomRecord<R extends TableRecord<R>>
          A base class for custom TableRecord implementations in client code.
 class TableRecordImpl<R extends TableRecord<R>>
          A record implementation for a record originating from a single table This type is for JOOQ INTERNAL USE only.
 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 TableRecord
<R extends TableRecord<R>,T>
int
FactoryProxy.executeDelete(R record, Condition condition)
          Deprecated.  
<R extends TableRecord<R>,T>
int
Factory.executeDelete(R record, Condition condition)
          Delete a record from a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryProxy.executeDelete(Table<R> table)
          Deprecated. 
<R extends TableRecord<R>>
int
Factory.executeDelete(Table<R> table)
          Deprecated. 
<R extends TableRecord<R>,T>
int
FactoryProxy.executeDelete(Table<R> table, Condition condition)
          Deprecated. 
<R extends TableRecord<R>,T>
int
Factory.executeDelete(Table<R> table, Condition condition)
          Deprecated. 
<R extends TableRecord<R>>
int
FactoryProxy.executeDeleteOne(Table<R> table)
          Deprecated. 
<R extends TableRecord<R>>
int
Factory.executeDeleteOne(Table<R> table)
          Deprecated. 
<R extends TableRecord<R>,T>
int
FactoryProxy.executeDeleteOne(Table<R> table, Condition condition)
          Deprecated. 
<R extends TableRecord<R>,T>
int
Factory.executeDeleteOne(Table<R> table, Condition condition)
          Deprecated. 
<R extends TableRecord<R>>
int
FactoryProxy.executeInsert(R record)
          Deprecated.  
<R extends TableRecord<R>>
int
Factory.executeInsert(R record)
          Insert one record This executes something like the following statement: INSERT INTO [table] ...
<R extends TableRecord<R>>
int
FactoryProxy.executeInsert(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>>
int
Factory.executeInsert(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>,T>
int
FactoryProxy.executeUpdate(R record, Condition condition)
          Deprecated.  
<R extends TableRecord<R>,T>
int
Factory.executeUpdate(R record, Condition condition)
          Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryProxy.executeUpdate(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>>
int
Factory.executeUpdate(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>,T>
int
FactoryProxy.executeUpdate(Table<R> table, R record, Condition condition)
          Deprecated. 
<R extends TableRecord<R>,T>
int
Factory.executeUpdate(Table<R> table, R record, Condition condition)
          Deprecated. 
<R extends TableRecord<R>>
int
FactoryProxy.executeUpdateOne(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>>
int
Factory.executeUpdateOne(Table<R> table, R record)
          Deprecated. 
<R extends TableRecord<R>,T>
int
FactoryProxy.executeUpdateOne(Table<R> table, R record, Condition condition)
          Deprecated. 
<R extends TableRecord<R>,T>
int
Factory.executeUpdateOne(Table<R> table, R record, Condition condition)
          Deprecated. 
<R extends TableRecord<R>>
LoaderOptionsStep<R>
FactoryProxy.loadInto(Table<R> table)
          Deprecated.  
<R extends TableRecord<R>>
LoaderOptionsStep<R>
Factory.loadInto(Table<R> table)
          Create a new Loader object to load data from a CSV or XML source
<R extends TableRecord<R>>
R
FactoryProxy.newRecord(Table<R> table)
          Deprecated.  
<R extends TableRecord<R>>
R
Factory.newRecord(Table<R> table)
          Create a new Record that can be inserted into the corresponding table.
<R extends TableRecord<R>>
R
FactoryProxy.newRecord(Table<R> table, Object source)
          Deprecated.  
<R extends TableRecord<R>>
R
Factory.newRecord(Table<R> table, Object source)
          Create a new pre-filled Record that can be inserted into the corresponding table.
 



Copyright © 2012. All Rights Reserved.