Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    
    
    my $results = $sth->fetchall_arrayref({});
    
  2. or download this
    $results->[0]; // Reference to a hash ref of Row_1
    my %row_1 = %{$results->[0]}; // Hash of Row 1
    ...
    }