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
For persistence operation what style of determining results (success/failure) is to be used.String
table
The name of the table in the case of an entity withsecondary tables
, defaults to the primary table.
-
-
-
Element Detail
-
sql
String sql
Procedure name or SQLDELETE
statement.
-
-
-
callable
boolean callable
Is the statement callable (aka aCallableStatement
)?- Default:
- false
-
-
-
check
ResultCheckStyle check
For persistence operation what style of determining results (success/failure) is to be used.- Default:
- org.hibernate.annotations.ResultCheckStyle.NONE
-
-
-
table
String table
The name of the table in the case of an entity withsecondary tables
, defaults to the primary table.- Returns:
- the name of the table
- Since:
- 6.2
- Default:
- ""
-
-