| Package | Description | 
|---|---|
| org.jooq | 
 The  
org.jooq package contains jOOQ's public API. | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
UpdatableRecord.delete()
Deletes this record from the database, based on the value of the primary
 key or main unique key. 
 | 
int | 
UpdatableRecord.store()
Store this record back to the database. 
 | 
int | 
UpdatableRecord.store(java.util.Collection<? extends Field<?>> fields)
Store parts of this record to the database. 
 | 
int | 
UpdatableRecord.store(Field<?>... fields)
Store parts of this record to the database. 
 | 
int | 
UpdatableRecord.update()
Store this record back to the database using an  
UPDATE
 statement. | 
int | 
UpdatableRecord.update(java.util.Collection<? extends Field<?>> fields)
Store parts of this record to the database using an  
UPDATE
 statement. | 
int | 
UpdatableRecord.update(Field<?>... fields)
Store parts of this record to the database using an  
UPDATE
 statement. | 
Copyright © 2018. All Rights Reserved.