in reply to Re^2: Can insert but not select
in thread Can insert but not select
And what behavior do you see from this?
Note that fetchrow_arrayref always returns the same array reference (see the DBI documentation). That means if you want to store all the rows (as you appear to be attempting), you have to copy the array.
while(my $color_test = $sth->fetchrow_arrayref) { push @color_test, [ @{$color_test} ]; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Can insert but not select
by zoophagous (Novice) on Jan 03, 2009 at 05:49 UTC | |
by zoophagous (Novice) on Jan 03, 2009 at 06:41 UTC |