in reply to Multiple references pointing to the same memory location
Update:I see DBX had mostly the same answer. Oh well, it was a good answer, and worth repeating :)foreach my $key (@keys) { # You are using 'RaiseError', right? $sth->execute($key); while (my @temp_columns = $sth->fetchrow_array) { push(@entries, \@temp_columns); } }
|
|---|