Package | Description |
---|---|
org.sormula.operation |
Classes that perform SQL operations such as select, update, insert, save, and delete.
|
org.sormula.operation.cascade |
Classes that perform cascade (one-to-many and one-to-one) operations that are defined
by cascade annotations.
|
Modifier and Type | Class and Description |
---|---|
class |
DeleteOperation<R>
SQL delete operation for row of type R.
|
class |
InsertOperation<R>
SQL insert operation for row of type R.
|
class |
SaveOperation<R>
SQL update or insert operation for row of type R.
|
class |
UpdateOperation<R>
SQL update operation for row of type R.
|
Constructor and Description |
---|
ModifyCascadeOperation(ModifyOperation<S> sourceOperation,
RowField<S,?> targetField,
Table<T> targetTable,
java.lang.Class<?> cascadeSqlOperationClass)
Constructs from source operation and targets of the cascade.
|