Help for this page

Select Code to Download


  1. or download this
    # grab the stuff from the database
    my $sth = $DBH->prepare('
    ...
    # prepare a data structure for HTML::Template
    my $rows;
    push @{$rows}, $_ while $_ = $sth->fetchrow_hashref();
    
  2. or download this
    # grab the stuff from the database
    my $rows = $DBH->selectall_arrayref('
       select title, artist, album, year
       from songs', Slice => {} );