maltes
committed
on 01 Jun 05
Added application and application data linking functionality written by Timo. This allows you to link packages together (e.g. project-manageā€¦ Show more
Added application and application data linking functionality written by Timo. This allows you to link packages together (e.g. project-manager and logger) or data of packages (e.g. a project and a file-storage folder)

Show less

/tcl/application-data-link-procs-oracle.xql (+37)
  1 <?xml version="1.0"?>
  2 <queryset>
  3 <rdbms><type>oracle</type><version>8.0</version></rdbms>
  4
  5 <fullquery name="application_data_link::new.create_forward_link">
  6     <querytext>
  7                     begin
  8                     :1 = acs_rel.new (
  9                                       rel_id => null,
  10                                       rel_type => 'application_data_link',
  11                                       object_id_one => :this_object_id,
  12                                       object_id_two => :target_object_id,
  13                                       context_id => :this_object_id,
  14                                       creation_user => :user_id,
  15                                       creation_ip => :id_addr
  16                                       );
  17                     end;
  18     </querytext>
  19 </fullquery>
  20
  21 <fullquery name="application_data_link::new.create_backward_link">
  22     <querytext>
  23                     begin
  24                     :1 = acs_rel.new (
  25                                       rel_id => null,
  26                                       rel_type => 'application_data_link',
  27                                       object_id_one => :target_object_id,
  28                                       object_id_two => :this_object_id,
  29                                       context_id => :this_object_id,
  30                                       creation_user => :user_id,
  31                                       creation_ip => :id_addr
  32                                       );
  33                     end;
  34     </querytext>
  35 </fullquery>
  36
  37 </queryset>