Help for this page

Select Code to Download


  1. or download this
    my $error_sth = $error_db->prepare("SELECT Error_list from error_potra
    +it WHERE Date='$date' and Type='$type'");
    $error_sth->execute() or die $DBI::errstr;
    
  2. or download this
    my $error_sth = $error_db->prepare("SELECT Error_list from error_potra
    +it WHERE Date=? and Type=?");
    $error_sth->execute($date, $type) or die $DBI::errstr;