Help for this page

Select Code to Download


  1. or download this
    my $row = $sth->fetchrow_hashref;
    Then grab your values with:
    $row->{'my_column'}
    
  2. or download this
    while(my $row = $sth->fetchow_hashref)
         $row->{'my_column'}