in reply to access array of values without a loop
Are there multiple fields per key?my $field = join ',', @{$hashref->{col3}};
How exactly do you envision your data being transformed to fit into your database?$query->execute($hashref->{col1},@{$hashref->{col2}},@{$hashref->{col3 +}});
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|