Package org.teiid.spring.annotations
Annotation Type DeleteQuery
-
@Target(TYPE) @Retention(RUNTIME) public @interface DeleteQuery
Defines the Teiid View's Transformation Delete query. This is optional annotation, that can be defined only when you want support Delete on the view.
For more information checkout Update procedures in Teiid.@DeleteQuery( "FOR EACH ROW \n"+ "BEGIN ATOMIC \n" + "DELETE FROM customerDS.person WHERE id = OLD.id;\n"+ "END" )
-
-
Element Detail
-
value
String value
- Default:
- ""
-
-