Help for this page

Select Code to Download


  1. or download this
    while ( my ($key,$value) = each %$rows ) {
        my $name = $value->{name};
        # ...
    }
    
  2. or download this
    my $hash_ref = $dbh->selectall_hashref('select id, name, price from pr
    +oducts', 'id' );
    while ( my ($id,$value) = each %$hash_ref ) {
    ...
        my $price = $value->{price};
        # ...
    }