Help for this page

Select Code to Download


  1. or download this
    my $hash = $dbh->selectall_arrayref("SELECT id,name,age FROM foo",
                                        "id");
    
  2. or download this
    # ...
    my @rows;
    $sth->execute();
    ...
    {
         push(@rows, { %$row });   # Force unique reference
    }