|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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 | ||
---|---|---|
|
FactoryOperations.executeDelete(Table<R> table)
Delete records from a table DELETE FROM [table] |
|
|
FactoryOperations.executeDelete(Table<R> table,
Condition condition)
Delete records from a table DELETE FROM [table] WHERE [condition] |
|
|
FactoryOperations.executeDeleteOne(Table<R> table)
Delete one record in a table DELETE FROM [table] |
|
|
FactoryOperations.executeDeleteOne(Table<R> table,
Condition condition)
Delete one record in a table DELETE FROM [table] WHERE [condition] |
|
|
FactoryOperations.executeInsert(Table<R> table,
R record)
Insert one record INSERT INTO [table] ... |
|
|
FactoryOperations.executeUpdate(Table<R> table,
R record)
Update a table UPDATE [table] SET [modified values in record] |
|
|
FactoryOperations.executeUpdate(Table<R> table,
R record,
Condition condition)
Update a table UPDATE [table] SET [modified values in record] WHERE [condition] |
|
|
FactoryOperations.executeUpdateOne(Table<R> table,
R record)
Update one record in a table UPDATE [table] SET [modified values in record] |
|
|
FactoryOperations.executeUpdateOne(Table<R> table,
R record,
Condition condition)
Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition] |
|
|
FactoryOperations.loadInto(Table<R> table)
Create a new Loader object to load data from a CSV or XML
source |
|
|
FactoryOperations.newRecord(Table<R> table)
Create a new Record that can be inserted into the corresponding
table. |
|
|
FactoryOperations.newRecord(Table<R> table,
Object source)
Create a new pre-filled Record that can be inserted into the
corresponding table. |
|
|
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 | ||
---|---|---|
|
Factory.executeDelete(Table<R> table)
Delete records from a table DELETE FROM [table] |
|
|
Factory.executeDelete(Table<R> table,
Condition condition)
Delete records from a table DELETE FROM [table] WHERE [condition] |
|
|
Factory.executeDeleteOne(Table<R> table)
Delete one record in a table DELETE FROM [table] |
|
|
Factory.executeDeleteOne(Table<R> table,
Condition condition)
Delete one record in a table DELETE FROM [table] WHERE [condition] |
|
|
Factory.executeInsert(Table<R> table,
R record)
Insert one record INSERT INTO [table] ... |
|
|
Factory.executeUpdate(Table<R> table,
R record)
Update a table UPDATE [table] SET [modified values in record] |
|
|
Factory.executeUpdate(Table<R> table,
R record,
Condition condition)
Update a table UPDATE [table] SET [modified values in record] WHERE [condition] |
|
|
Factory.executeUpdateOne(Table<R> table,
R record)
Update one record in a table UPDATE [table] SET [modified values in record] |
|
|
Factory.executeUpdateOne(Table<R> table,
R record,
Condition condition)
Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition] |
|
|
Factory.loadInto(Table<R> table)
Create a new Loader object to load data from a CSV or XML
source |
|
|
Factory.newRecord(Table<R> table)
Create a new Record that can be inserted into the corresponding
table. |
|
|
Factory.newRecord(Table<R> table,
Object source)
Create a new pre-filled Record that can be inserted into the
corresponding table. |
|
|
Factory.truncate(Table<R> table)
Create a new DSL truncate statement. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |