Help for this page

Select Code to Download


  1. or download this
    while (my $row = $parser->fetch()) { 
        my $myColumn_value = $row->{'myColumn'};
        print $myColumn_value unless($myColumn_value eq "");
    }
    
  2. or download this
        print $myColumn_value unless(($myColumn_value // "") eq "");