Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^5: Accessing an array of anonymous hashes

by eric256 (Parson)
on Mar 26, 2007 at 18:41 UTC ( [id://606637]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Accessing an array of anonymous hashes
in thread Accessing an array of anonymous hashes

Generaly you would want your data definition, and your data separate. You would then apply that definition to your data. I would think you end up with an AoA for the definition and then an array of data (or AoA if you have multiple rows of data. The column of the data then corresponds directly to the column of the definition.

use strict; use warnings; #definition AoA my $transaction_records = [ [ 'Batch_Agency' => [ 1 .. 3] ], [ 'Batch_Date' => [ 4 .. 11] ], [ 'Batch_Type' => [ 12 .. 12] ], ]; my $i = 0; #build a map of column name to column my $key_map = { map { $_->[0] => $i++ } @$transaction_records }; #then your rows could look like my $row1 = [ 'agc', '05-JAN-2007', 'type']; my $row2 = [ 'agc', '05-JAN-2007', 'type']; #and you could access data like $row1->[ $key_map->{Batch_Agency} ] = 'abc'; #multiple rows could look like my $rows = [ $row1, $row2]; for my $i ( 0,1,2) { print $transaction_records->[$i]->[0], " = ", $row1->[$i], "\n"; }

___________
Eric Hodges

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://606637]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-18 00:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found