Help for this page

Select Code to Download


  1. or download this
    my @row;
    while ( @row = $sth_C->fetchrow_array )
    ...
    
        undef @row;
    }
    
  2. or download this
        my $krow = join "\0", @row;
    
  3. or download this
        $seen{$krow}++ and next;
    
  4. or download this
        print OUTPUT_FILE join( "\t", @row ), "\n";