On Thu, May 11, 2006 at 08:59:25AM -0400, Mark Galbreath wrote:
> Tim,
>  
> I have preactically memorized the docs I have read them so many times.  If 
> you have a better suggestion, I am wide open for it!

Something simple would do:

        $sth = $dbh->prepare(...);
        $sth->execute;
        while ( @row = $sth->fetchrow_array ) {
            print join("|", @row), "\n";
        }

(I'm assuming you know your data doesn't contain any | characters.)

Tim.

Reply via email to