Help for this page

Select Code to Download


  1. or download this
    @items = ( { item_key         => '1',
                 item_description => 'description 1',
    ...
               },
               ...
             );
    
  2. or download this
    my $items_sth   = $dbh->prepare('SELECT * FROM Items');
    my $actions_sth = $dbh->prepare('SELECT * FROM Actions WHERE item_key 
    += ?');
    ...
    
       push @items, $item;
    }
    
  3. or download this
    my @items;
    my $last_key;
    ...
          summary => $row->{action_summary},
       };
    }
    
  4. or download this
    my %items;
    my @items;
    ...
          summary => $row->{action_summary},
       };
    }