Package org.hibernate.annotations
Annotation Type SQLDeleteAll
-
@Target({TYPE,FIELD,METHOD}) @Retention(RUNTIME) public @interface SQLDeleteAll
Custom SQL statement for delete of all of a collection's elements.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String
sql
Procedure name or SQL DELETE statement.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
callable
Is the statement callable (aka aCallableStatement
)?ResultCheckStyle
check
For persistence operation what style of determining results (success/failure) is to be used.
-
-
-
-
check
ResultCheckStyle check
For persistence operation what style of determining results (success/failure) is to be used.- Default:
- org.hibernate.annotations.ResultCheckStyle.NONE
-
-