On Thu, Apr 13, 2006 at 03:22:19PM -0700, Loo, Peter # PHX wrote:
> Hi,
>
> I am passing the correct arguments to dump_results, but it appears that
> the records are not getting separated with new line.
>
> $maxlen = 500;
> $lsep = '\n';
> $fsep = '|';
> $fh = \*FH;
>
> $rows = $sth->dump_results($maxlen, $lsep, $fsep, $fh);
> Also, how can I force it so that the output does not have the quotes for
> every field?
Don't use dump_results() for this. The docs say:
Since it uses L</neat_list> to format and edit the string for reading by
humans, it is not recomended for data transfer applications.
Tim.