Help for this page

Select Code to Download


  1. or download this
    mknod /tmp/bcp-pipe p
    
  2. or download this
    bcp mydb..mytable out /tmp/bcp-pipe -c -Uuser -Sserver
    
  3. or download this
    open FIFO, '/tmp/bcp-pipe' or die "cannot open /tmp/bcp-pipe: $!\n";
    while (<FIFO>) {
      print "bcp-data: $_";
    }
    close FIFO;