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)...
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 } }
|
|---|