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 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
 interface Truncate<R extends TableRecord<R>>
          A Query that can truncate a table in the database.
 

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>>
int
FactoryOperations.executeDelete(Table<R> table)
          Delete records from a table DELETE FROM [table]
<R extends TableRecord<R>,T>
int
FactoryOperations.executeDelete(Table<R> table, Condition condition)
          Delete records from a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryOperations.executeDeleteOne(Table<R> table)
          Delete one record in a table DELETE FROM [table]
<R extends TableRecord<R>,T>
int
FactoryOperations.executeDeleteOne(Table<R> table, Condition condition)
          Delete one record in a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryOperations.executeInsert(Table<R> table, R record)
          Insert one record INSERT INTO [table] ...
<R extends TableRecord<R>>
int
FactoryOperations.executeUpdate(Table<R> table, R record)
          Update a table UPDATE [table] SET [modified values in record]
<R extends TableRecord<R>,T>
int
FactoryOperations.executeUpdate(Table<R> table, R record, Condition condition)
          Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
<R extends TableRecord<R>>
int
FactoryOperations.executeUpdateOne(Table<R> table, R record)
          Update one record in a table UPDATE [table] SET [modified values in record]
<R extends TableRecord<R>,T>
int
FactoryOperations.executeUpdateOne(Table<R> table, R record, Condition condition)
          Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition]
<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.
<R extends TableRecord<R>>
Truncate<R>
FactoryOperations.truncate(Table<R> table)
          Create a new DSL truncate statement.
 

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>>
int
Factory.executeDelete(Table<R> table)
          Delete records from a table DELETE FROM [table]
<R extends TableRecord<R>,T>
int
Factory.executeDelete(Table<R> table, Condition condition)
          Delete records from a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
Factory.executeDeleteOne(Table<R> table)
          Delete one record in a table DELETE FROM [table]
<R extends TableRecord<R>,T>
int
Factory.executeDeleteOne(Table<R> table, Condition condition)
          Delete one record in a table DELETE FROM [table] WHERE [condition]
<R extends TableRecord<R>>
int
Factory.executeInsert(Table<R> table, R record)
          Insert one record INSERT INTO [table] ...
<R extends TableRecord<R>>
int
Factory.executeUpdate(Table<R> table, R record)
          Update a table UPDATE [table] SET [modified values in record]
<R extends TableRecord<R>,T>
int
Factory.executeUpdate(Table<R> table, R record, Condition condition)
          Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
<R extends TableRecord<R>>
int
Factory.executeUpdateOne(Table<R> table, R record)
          Update one record in a table UPDATE [table] SET [modified values in record]
<R extends TableRecord<R>,T>
int
Factory.executeUpdateOne(Table<R> table, R record, Condition condition)
          Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition]
<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
Factory.newRecord(Table<R> table)
          Create a new Record that can be inserted into the corresponding table.
<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.
<R extends TableRecord<R>>
Truncate<R>
Factory.truncate(Table<R> table)
          Create a new DSL truncate statement.
 



Copyright © 2012. All Rights Reserved.