Help for this page

Select Code to Download


  1. or download this
    my $query = 
     "update $Table set ? where ...";
      my $sth = $dbh->prepare($query);
    
  2. or download this
    $dbh->do("update $Table set...");