All - I'm running under ActiveState on Win2k and using MySQL. I'm using dump_results() to print the results of a database query. I need to print the same result to multiple files with different delimiters and formats.
Questions 1. Is there a way to use the same statement handle result set without calling another execute()? Do I need an execute() for each dump_results() call? I'd like to make one execute call, and write the results to multiple files. 2. I'm trying to tab delimit the file, and used the following statement: my $rows = $sth->dump_results(80, '\n', '\t', $SH); However, I end up with '\t' (single quote \t single quote) as my delimiter, not an actual tab. Any suggestions? Thanks for the help, Mark
