Help for this page

Select Code to Download


  1. or download this
    $sth->execute(
        map { defined($_) && length($_) ? $_ : undef }
            @seen_values );
    
  2. or download this
    $sth->execute(
        map { no warnings 'uninitialized'; length($_) ? $_ : undef }
            @seen_values );