Help for this page

Select Code to Download


  1. or download this
    my ($id, $title);
    
    ...
    $sth->execute($some_value);
    $sth->fetch;
    $sth->finish;
    
  2. or download this
    my $sth = $dbh->prepare(...);
    $sth->execute(...);
    ...
      # process $row
    }
    $sth->finish;