Help for this page

Select Code to Download


  1. or download this
    my $matrix = $sth->fetchall_arrayref();
    
  2. or download this
      my (@matrix) = ();
      while (my @ary = $sth->fetchrow_array())
    ...
         push(@matrix, [@ary]); 
      }    
    }