Help for this page

Select Code to Download


  1. or download this
    open(IN,  $sqlfile)    || die "cannot open $sqlfile for input: $!";
    open(OUT, ">$outfile") || die "cannot open $outfile for output: $!";
    
  2. or download this
    open(IN, '<:encoding(ASCII)', $sqlfile) or die "cannot open $sqlfile f
    +or input: $!";
    open(OUT, '>:encoding(ASCII)', $outfile or die "cannot open file $outf
    +ile for writing: $!";