Help for this page

Select Code to Download


  1. or download this
    my $table_results= $dbh2->prepare("SELECT * from $feed_table WHERE ent
    +ry_time >= $time");
    $table_results->execute();
    
  2. or download this
    $sth_insert = $dbh3->prepare("INSERT IGNORE INTO $feed_table (id_code,
    +entry_time,parent_id_code,author_name,author_code,author_url,author_i
    +mage_url,entry_url,
    entry_types,status_code,entry_text,entry_data,last_update,pull_time,qu
    +eue_code) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
    ...
            $sth_insert->execute(@insert);
        
    }