Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^7: JSON module

by LTjake (Prior)
on Aug 16, 2007 at 11:54 UTC ( [id://633012]=note: print w/replies, xml ) Need Help??


in reply to Re^6: JSON module
in thread JSON module

@output should be an array of hashrefs.

while ( my $row = $sth->fetchrow_hashref ) { my %data; $data{ col1 } = 'bar'; push @output, \%data; }

Then converting it to JSON will make it look something like (i've added some formatting):

{ "myData" : [ { "col1" : "bar" }, { "col1" : "bar" }, # etc ... ] }

HTH.

--
"Go up to the next female stranger you see and tell her that her "body is a wonderland."
My hypothesis is that she’ll be too busy laughing at you to even bother slapping you.
" (src)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-25 23:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found