Help for this page

Select Code to Download


  1. or download this
    my $sql_ins_log = "insert into download_log (download_id,status,update
    +_time)" 
                    . " values(?,getValueByMeaning('$status_meaning','17')
    +,?)";
    
  2. or download this
    my $sql_ins_log = "insert into download_log (download_id,status,update
    +_time)" 
                    . " values(?,?,?)";
    ...
      $sth = $dbh->prepare($sql_ins_log);
      $sth->execute($download_id,getValueByMeaning('$status_meaning','17')
    +,$now);
    }
    
  3. or download this
    insert into download_log (download_id,status,update_time) values(1,get
    +ValueByMeaning('DONE',17'),'2014-09-15 14:16:00')