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