Re: See the structure of what I am pulling via DBI

2005-11-07 Thread Michael David
"Robert Hicks" <[EMAIL PROTECTED]> wrote > If I am pulling data out with a $sth->fetchrow_arrayref, how do I see the > structure of what is coming back? I need to change the description on some > of the data coming back out (like changing a "C" to "Closed") but I am not > sure how to see the arra

Re: See the structure of what I am pulling via DBI

2005-11-07 Thread Robert
JupiterHost.Net wrote: Robert Hicks wrote: If I am pulling data out with a $sth->fetchrow_arrayref, how do I see the structure of what is coming back? I need to change the description on some use Data::Dumper; print Dumper $sth->fetchrow_arrayref(.. of the data coming back out (like

Re: See the structure of what I am pulling via DBI

2005-11-07 Thread JupiterHost.Net
Robert Hicks wrote: If I am pulling data out with a $sth->fetchrow_arrayref, how do I see the structure of what is coming back? I need to change the description on some use Data::Dumper; print Dumper $sth->fetchrow_arrayref(.. of the data coming back out (like changing a "C" to "Close

Re: See the structure of what I am pulling via DBI

2005-11-07 Thread Hal Ashburner
On Mon, 2005-11-07 at 10:56 -0500, Robert Hicks wrote: > If I am pulling data out with a $sth->fetchrow_arrayref, how do I see the > structure of what is coming back? I need to change the description on some > of the data coming back out (like changing a "C" to "Closed") but I am not > sure how to