Help for this page

Select Code to Download


  1. or download this
    my $id_article = 0;
        for ($i_article = 0; $i_article < @output_concord_files_prepare; $
    +i_article++){
            $dbh->do("
    ...
            ") || die $dbh->errstr;
        }
        $id_article++;
    
  2. or download this
    my $id_event = 0;
        for ($i_event = 0; $i_event < @event_prepare; $i_event++){
            $dbh->do("
    ...
             ") || die $dbh->errstr;
        }
        $id_event++;
    
  3. or download this
    $create_query = qq{
            create table article_event_index(
                id_article int(10) NOT NULL,
    ...
            )
        };
        $dbh->do($create_query);
    
  4. or download this
        #!/usr/bin/perl -w
             
        use strict;
    ...
                }
            }
        }