while($row = $sth->fetchrow_arrayref) {    # this is a fast and simple way to deal with nulls:    foreach (@$row) { $_ = '' unless defined }    print "@$row\n";  }