Package org.hibernate.annotations
Annotation Interface SQLDeleteAll
Specifies a custom SQL DML statement to be used in place of the default SQL generated by
Hibernate when an entire collection is deleted from the database.
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanIs the statement callable (aka aCallableStatement)?Deprecated.The name of the table affected.Class<? extends Expectation>AnExpectationclass used to verify that the operation was successful.
-
Element Details
-
sql
String sqlProcedure name or SQLDELETEstatement.
-
-
-
callable
boolean callableIs the statement callable (aka aCallableStatement)?- Default:
- false
-
verify
Class<? extends Expectation> verifyAnExpectationclass used to verify that the operation was successful.- Default:
- org.hibernate.jdbc.Expectation.class
-
check
Deprecated.useverify()with anExpectationclassAResultCheckStyleused to verify that the operation was successful.- Default:
- NONE
-
table
String tableThe name of the table affected. Never required.- Returns:
- the name of the secondary table
- Since:
- 6.2
- Default:
- ""
-
verify()with anExpectationclass