in reply to Re: Handling Null or Undef values in DBI (and things of those nature)...
in thread Handling Null or Undef values in DBI (and things of those nature)...

Can you please give me an example or two on your seggestions.

As far as my first question i got it done by doing this

while (@row = $sth->fetchrow_array) { foreach (@$row) { $_ = '' unless defined; ### HANDLE NULL FIELDS } }
  • Comment on Re: Re: Handling Null or Undef values in DBI (and things of those nature)...
  • Download Code