in reply to Multiple references pointing to the same memory location
I'm not sure if that'll save you much in performance, but it does save screen space. (Plus it avoids a couple extra symbol table entries, which can't be a bad thing, right?)foreach $key (@keys) { $sth->execute($key); $columns_ref=[@{$sth->fetchrow_arrayref()}]; push(@entries, $columns_ref); }
=cut
--Brent Dax
There is no sig.
|
|---|