RE: Store hash in SQL - Data::Dumper

2005-05-03 Thread Thomas, Mark - BLS CTR
> YAML doesn't support nested hashes. I wish it did. Yes it does. It supports ANY ARBITRARY perl data structure. I use it exclusively now instead of Data::Dumper. -- Mark Thomas Internet Systems Architect ___ BAE SYSTEMS Information Technology 2525 Network

Re: Store hash in SQL - Data::Dumper

2005-05-02 Thread $Bill Luebkert
Chris wrote: > I can now turn the %hash into text, but I don't understand how to make it > correctly formatted. > > --- > %hash = ( > 'John' => { > 'eyes' => 'green', > 'hair' => 'brown', > 'clothes' => { 'boots'=>'bl

Re: Store hash in SQL - Data::Dumper

2005-05-02 Thread Jeff Schultz
On 5/2/05, Suresh Govindachar <[EMAIL PROTECTED]> wrote: > Chris Sent on 2 May 2005 16:02:02 -0400: > > > I can now turn the %hash into text, but I don't understand > > how to make it correctly formatted. > > > > --- > > %hash = ( > > 'John' => { > >

Re: Store hash in SQL - Data::Dumper

2005-05-02 Thread Suresh Govindachar
Chris Sent on 2 May 2005 16:02:02 -0400: > I can now turn the %hash into text, but I don't understand > how to make it correctly formatted. > > --- > %hash = ( > 'John' => { > 'eyes' => 'green', > 'hair' => 'brown', >

RE: Store hash in SQL - Data::Dumper

2005-05-02 Thread Chris
YAML doesn't support nested hashes. I wish it did. -Original Message- From: Chris Cappelletti [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 4:46 PM To: Chris Subject: RE: Store hash in SQL - Data::Dumper I read some of that YAML thing, and that's probably what you w

RE: Store hash in SQL - Data::Dumper

2005-05-02 Thread Chris
I can now turn the %hash into text, but I don't understand how to make it correctly formatted. --- %hash = ( 'John' => { 'eyes' => 'green', 'hair' => 'brown', 'clothes' => { 'boots'=>'black','shirt'=>'green'