Help for this page

Select Code to Download


  1. or download this
    while (my @names = $sth->fetchrow_array){
        $sth = $dbh->prepare("INSERT INTO names (name) VALUES (?)");
        $sth->execute($names[0]);
        $count++; #THIS IS LINE 27.
    }
    
  2. or download this
    my $insert_sth = $dbh->prepare("INSERT INTO names (name) VALUES (?)");
    while (my @names = $sth->fetchrow_array){
    ...
    }
    $sth->finish();
    $insert_sth->finish();