Help for this page

Select Code to Download


  1. or download this
    $dbh->execute($arg1, $arg2);
    
  2. or download this
    $dbh->execute($arg2, $arg1);
    
  3. or download this
    sub execute {
        my ($sth, @args) = @_;
    ...
                push @exec_parms, $args[$_]   #<--line 403
                    foreach (@{$src_phs->[$i]});
    
  4. or download this
    push @exec_parms, $args[$_]
    
  5. or download this
    unshift @exec_parms, $args[$_]