Help for this page

Select Code to Download


  1. or download this
    my $row = $dbh->selectrow_arrayref($stmt_or_sth);
    
  2. or download this
    my $row = $sth->fetch_arrayref();
    $sth->finish();
    
  3. or download this
    my ($value) = $sth->fetch_array();
    $sth->finish();