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 ElementDescriptionboolean
Is the statement callable (aka aCallableStatement
)?Deprecated.The name of the table affected.Class<? extends Expectation>
AnExpectation
class used to verify that the operation was successful.
-
Element Details
-
sql
String sqlProcedure name or SQLDELETE
statement.
-
-
-
callable
boolean callableIs the statement callable (aka aCallableStatement
)?- Default:
- false
-
verify
Class<? extends Expectation> verifyAnExpectation
class used to verify that the operation was successful.- Default:
- org.hibernate.jdbc.Expectation.class
-
check
Deprecated.useverify()
with anExpectation
classAResultCheckStyle
used 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 anExpectation
class