Help for this page

Select Code to Download


  1. or download this
    ...
    my $ST=$DB->prepare("call apps.package_name.proc(?, ?, ?)");
    ...
    while (my $hr = $ST_result.fetchrow_hashref) {
        ... process data ...
    }
    
  2. or download this
    procedure proc(
              arg1    in   varchar(32), 
    ...
            where col7=arg1 or col8=arg2
            ;
    end;