Help for this page
my $matrix = $sth->fetchall_arrayref();
my (@matrix) = (); while (my @ary = $sth->fetchrow_array()) ... push(@matrix, [@ary]); } }