Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare(qq{...});
    $sth->execute();
    if($sth->rows){ #If handler has affected rows
    
    }
    
  2. or download this
    my $sth = $dbh->prepare(qq{...});
    $sth->execute();
    while(my $row = $sth->fetchrow_hashref()){ #just do something if $sth 
    +can return any records
    
    }