in reply to Re: Text::CSV_XS Issue
in thread Text::CSV_XS Issue

Yes, I want quotes for each field. I tried always_quote but I got the same result.

Replies are listed 'Best First'.
Re^3: Text::CSV_XS Issue
by ikegami (Patriarch) on May 28, 2009 at 18:57 UTC
    Again, set it to something true (like 1), not something false (like 0). Demonstrate that it doesn't work if it doesn't.
      That worked. I didn't realize that I could use a one (my bad). I thought you could only use a zero. It works now. Thanks again for you help. Dave
        It's a flag. A true value turns it on (it does always quote). A false value turns it off (it doesn't always quote).