in reply to Re: DBI - Handling NULL values
in thread DBI - Handling NULL values

Excellent, thanks - that works a treat:)
I'd actually used placeholders in other parts of the same script, but it hadn't occurred to me to use them here.

And of course by using placeholders, the line:
join("," , map {qq("$_")} @row)
in my original example becomes no longer necessary, as the quoting is automagically taken care of by DBI.

Thanks again,
--Darren