in reply to Re: Tabular Data, Group By Functions
in thread Tabular Data, Group By Functions

Thank you. That helped. I get the data as output from another program. Is there any way that I need not save it the output in a temp file and directly pipe it to DBD:CSV ?

Replies are listed 'Best First'.
Re^3: Tabular Data, Group By Functions
by jZed (Prior) on Jun 15, 2005 at 03:49 UTC
    With either DBD::CSV or DBD::AnyData (both of which use exactly the same SQL engine and can handle the kind of data you show) you can query an arrayref. With DBD::AnyData you can also use the ad_import() method to query a string. Either one can be done without writing to a temporary file.