in reply to Push hash reference on array problem
Statement that does not work but should:Well, you're expecting an array of hashrefs and that's exactly what your push should do (the parentheses are unnecessary, btw).
push @dfdata_out, (\%dfdata_row);
Are you sure %dfdata_row contains what you think it does? Data::Dumper can help you determine its contents easily.
|
|---|