Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^3: DBD:Pg getting output in an array

by poj (Abbot)
on Jul 27, 2014 at 19:33 UTC ( [id://1095263]=note: print w/replies, xml ) Need Help??


in reply to Re^2: DBD:Pg getting output in an array
in thread DBD:Pg getting output in an array

Try
my $labels = []; my $data = []; while (my $ref = $sth->fetchrow_hashref()) { push @$labels,$ref->{'Labels'}; push @$data,$ref->{'Data'}; }
poj

Replies are listed 'Best First'.
Re^4: DBD:Pg getting output in an array
by terrykhatri (Acolyte) on Jul 27, 2014 at 21:30 UTC
    Thanks Poj, its
    my $labels = []; my $data = []; while (my @row = $sth->fetchrow_array) { push @$labels, $row[0]; push @$data, $row[1]; }
    Rgds. Terry

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-03-29 08:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found