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