in reply to pushing individual rows of return (DBI) into seperate arrays
$sth->execute() or die $sth->errstr; my @result_arrays; while (my @result = $sth->fetchrow_array()) { push(@result_arrays, \@results); } foreach(@results_arrays){ print qq(@{$_}<br><br>); } $sth->finish();
|
---|
Replies are listed 'Best First'. | |
---|---|
•Re: Re: pushing individual rows of return (DBI) into seperate arrays
by merlyn (Sage) on Aug 29, 2003 at 13:51 UTC |