Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("SELECT * FROM Something");
       $sth->execute();
       if($sth->err()){ die $sth->errstr(); }
    
  2. or download this
    my $sth = $dbh->prepare("SELECT * FROM Something");
       $sth->execute();
       if($dbh->err()){ die $dbh->errstr(); }