DatabaseUpdate<T> |
DatabaseUpdate.batchSize(int batchSize) |
Configures the batch size for this operation
|
DatabaseUpdate<T> |
DatabaseUpdate.binder(DatabaseMapping.Binder<T> binder) |
Applies a custom binder to this update
|
<T> DatabaseUpdate<T> |
Database.delete(java.lang.Class<T> type) |
Returns a new delete operation for the type specified
|
<T> DatabaseUpdate<T> |
Database.insert(java.lang.Class<T> type) |
Returns a new insert operation for the type specified
|
DatabaseUpdate<T> |
DatabaseUpdate.sql(java.lang.String sql) |
Applies a custom SQL expression to this update
|
<T> DatabaseUpdate<T> |
Database.update(java.lang.Class<T> type) |
Returns a new update operation for the type specified
|
DatabaseUpdate<T> |
DatabaseUpdate.verbose(boolean verbose) |
Turns verbose logging on/off for this operation
|