17 lines
506 B
Plaintext
17 lines
506 B
Plaintext
CREATE OR REPLACE TRIGGER EFT_NOM.cg$BDS_USER_CONTACT_DETAILS
|
|
|
|
BEFORE DELETE ON USER_CONTACT_DETAILS
|
|
BEGIN
|
|
-- Application_logic Pre-Before-Delete-statement <<Start>>
|
|
-- Application_logic Pre-Before-Delete-statement << End >>
|
|
|
|
cg$USER_CONTACT_DETAILS.cg$table.DELETE;
|
|
cg$USER_CONTACT_DETAILS.cg$tableind.DELETE;
|
|
cg$USER_CONTACT_DETAILS.idx := 1;
|
|
|
|
-- Application_logic Post-Before-Delete-statement <<Start>>
|
|
-- Application_logic Post-Before-Delete-statement << End >>
|
|
END;
|
|
/
|
|
|