Help for this page

Select Code to Download


  1. or download this
    #Insertion of extracted and synchronized data in 'article' table of e_
    +slide database
        my $i_article;
        my $id_article;
    ...
            ") || die $dbh->errstr;
            $id_event = $dbh->last_insert_id(undef, undef, 'event', 'id_ev
    +ent');
        }
    
  2. or download this
    my @fields = (qw(url html_extr_text concord_file sys_time));
        my $fieldlist = join ", ", @fields;
        my $field_placeholders = join ", ", map {'?'} @fields;
    ...
                die "Error inserting records, only [$field_placeholders] g
    +ot inserted: " . $sth->insert->errstr;
            }
        }