Help for this page

Select Code to Download


  1. or download this
    $dbh->{Profile} = 6;
    
  2. or download this
    while ( @columns = $sth1->fetchrow_array ) {
        $inserted += $sth2->execute(@columns);
        ...
        }
    }
    
  3. or download this
    while ($row=shift(@$cache) || shift@{$cache=$sth_o->fetchall_arrayref(
    +undef,$max_rows) || []}) {
        $inserted += $sth2->execute(@$row);
        ...
    };