Help for this page

Select Code to Download


  1. or download this
    use DBI;
    use threads qw(stringify);
    ...
    
    $thr4 = threads->new(\&processor);
    $thr4->detach;
    
  2. or download this
    sub row_sql(){
      my $select = $_[0];
    ...
      $dbh2->disconnect();
      return (@row2);
    }