in reply to Re: mysql perl hangs on selects
in thread mysql perl hangs on selects
instead ofmy $matrix = $sth->fetchall_arrayref();
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);
|
|---|