Help for this page

Select Code to Download


  1. or download this
    # Example 1: fetchrow_arrayref
    
    ...
    $sth->execute();
    print $sth->fetchrow_hashref()->{'the_name'};
    $sth->finish();
    
  2. or download this
    my $sth = $db->do("SELECT the_name FROM the_table WHERE id=3");
    print $sth;