Win has asked for the wisdom of the Perl Monks concerning the following question:
Which I would like modified to check to see whether the array @row is within an array of arrays called @collection_of_rows. If it is I want it to exit the loop and if it isn't I want it to continue as before and add @row to the array of arrays.while (my @row = $sth_C->fetchrow_array) { print OUTPUT_FILE join("\t", @row); print OUTPUT_FILE "\n"; undef @row; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Array of arrays
by Roy Johnson (Monsignor) on Feb 21, 2006 at 17:50 UTC | |
| |
Re: Array of arrays
by GrandFather (Saint) on Feb 21, 2006 at 17:47 UTC | |
Re: Array of arrays
by jdporter (Paladin) on Feb 21, 2006 at 18:41 UTC | |
|