Help for this page

Select Code to Download


  1. or download this
    my $sql = {
         SELECT count(*)
         FROM patient_data
    ...
      my $sth = $dbh->prepare($sql);
      $sth->execute($name);
      my ($count_rows) = $sth->fetchrow_array();
    
  2. or download this
    $sth->finish();