in reply to Re: mysql perl hangs on selects
in thread mysql perl hangs on selects

You can use DBI method fetchall_arrayref()
my $matrix = $sth->fetchall_arrayref();
instead of
my (@matrix) = (); while (my @ary = $sth->fetchrow_array()) { push(@matrix, [@ary]); } }

Can you show a part of your script which generates an HTML page?

      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);