DBA Data[Home] [Help]

XDB.XDB_PV_TRIG dependencies on XDB_PVTRIG_PKG

Line 5: xdb.xdb_pvtrig_pkg.pvtrig_ins(:new.res, :new.link, :new.path);

1: trigger xdb.xdb_pv_trig INSTEAD OF insert or delete or update
2: on xdb.path_view for each row
3: begin
4: if inserting then
5: xdb.xdb_pvtrig_pkg.pvtrig_ins(:new.res, :new.link, :new.path);
6:
7: /* check that either the REF or the BLOB columns are filled, not both */
8: end if;
9:

Line 11: xdb.xdb_pvtrig_pkg.pvtrig_del(:old.res, :old.link, :old.path);

7: /* check that either the REF or the BLOB columns are filled, not both */
8: end if;
9:
10: if deleting then
11: xdb.xdb_pvtrig_pkg.pvtrig_del(:old.res, :old.link, :old.path);
12:
13: /* check if we get the correct values from two tables in a view */
14: end if;
15:

Line 17: xdb.xdb_pvtrig_pkg.pvtrig_upd(:old.res, :new.res,

13: /* check if we get the correct values from two tables in a view */
14: end if;
15:
16: if updating then
17: xdb.xdb_pvtrig_pkg.pvtrig_upd(:old.res, :new.res,
18: :old.link, :new.link,
19: :old.path, :new.path );
20: end if;
21: end;