Package org.hibernate.annotations
Annotation Type SQLDeleteAll
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
callable
Is the statement callable (aka aCallableStatement
)?ResultCheckStyle
check
Deprecated.useverify()
with anExpectation
classString
table
The name of the table affected.Class<? extends Expectation>
verify
AnExpectation
class used to verify that the operation was successful.
-
-
-
Element Detail
-
sql
String sql
Procedure name or SQLDELETE
statement.
-
-
-
callable
boolean callable
Is the statement callable (aka aCallableStatement
)?- Default:
- false
-
-
-
verify
Class<? extends Expectation> verify
AnExpectation
class used to verify that the operation was successful.- Default:
- org.hibernate.jdbc.Expectation.class
-
-
-
check
@Deprecated(since="6.5") ResultCheckStyle check
Deprecated.useverify()
with anExpectation
classAResultCheckStyle
used to verify that the operation was successful.- Default:
- org.hibernate.annotations.ResultCheckStyle.NONE
-
-
-
table
String table
The name of the table affected. Never required.- Returns:
- the name of the secondary table
- Since:
- 6.2
- Default:
- ""
-
-