Help for this page

Select Code to Download


  1. or download this
    DBD::mysql::st execute failed: Duplicate entry '10157236320140648_1015
    +7237405105648' for key 'PRIMARY' at rdscopy.pl line 94.
    DBD::mysql::st execute failed: Duplicate entry '10157236320140648_1015
    +7237405105648' for key 'PRIMARY' at rdscopy.pl line 94.
    
  2. or download this
     
    ##print and insert at the same time
            while( my @results = $table_results->fetchrow_array())
    ...
              print "\n";
              $sth_insert->execute(@results);
            }
    
  3. or download this
    while (my $insert = $table_results->fetchrow_array()) {
        $sth_insert->execute(@$insert);
    }