Help for this page

Select Code to Download


  1. or download this
    for (@$sales_inserts) {
        my $table = shift(@$_);
    ...
        ');
        $sth->execute(@$_);
    }
    
  2. or download this
    my %sth_cache;
    for (@$sales_inserts) {
    ...
        ');
        $sth->execute(@$_);
    }