Help for this page

Select Code to Download


  1. or download this
    my %foo; # Store here when fetching fields
    my $sth1 = $dbh->prepare ("select * from foo");
    ...
    while ($sth1->fetch) {
        $sth2->execute;
        }
    
  2. or download this
    my %rec;
    my $sth1 = $dbh->prepare ("select * from foo");
    ...
    while ($sth1->fetch) {
        $sth2->execute;
        }