in reply to Re^2: Duplicate rows with Class::DBI
in thread Duplicate rows with Class::DBI
Why the \%$_? There's no need to copy $_'s referant, simply doing push @loop_data, $_ for @info would suffice. Of course, that's exactly the same as @loop_data = @info, so the whole thing is moot anyway. :)