Update |
UpdateValue.expr(java.lang.String expr) |
Use an expression to update the value
|
Update |
Update.orAbort() |
Set this UPDATE statement to be UPDATE OR ABORT
|
Update |
Update.orFail() |
Set this UPDATE statement to be UPDATE OR FAIL
|
Update |
Update.orIgnore() |
Set this UPDATE statement to be UPDATE OR IGNORE
|
Update |
Update.orReplace() |
Set this UPDATE statement to be UPDATE OR REPLACE
|
Update |
Update.orRollback() |
Set this UPDATE statement to be UPDATE OR ROLLBACK
|
Update |
Update.set(ValueHolder values) |
Set multiple values to be updated
|
Update |
Update.set(java.lang.String column,
java.lang.Object value) |
Set a value to be updated
|
default Update |
BeforeUpdate.update(Table table) |
Continue query with UPDATE
|
default Update |
BeforeUpdate.update(Update update) |
Accept an existing UPDATE statement as predecessor
|
default Update |
BeforeUpdate.update(java.lang.String table) |
Continue query with UPDATE
|
static Update |
SQLBuilder.Update(Table table) |
Start with an UPDATE statement
|
static Update |
SQLBuilder.Update(java.lang.String table) |
Start with an UPDATE statement
|
default Update |
BeforeUpdate.updateSQL(java.lang.String sql) |
Use plain SQL to form this UPDATE statement
|
Update |
UpdateValue.value(java.lang.Object value) |
Set the updated value
|