Help for this page

Select Code to Download


  1. or download this
      $dbh->do("update table set thing = ? where id = ?",
                \%attr, $thing, $id);
    
  2. or download this
      $dbh->do("update table set thing = ? where id = ?",
                undef, $thing, $id);
      # OR
      $dbh->do("update table set thing = ? where id = ?",
                {}, $thing, $id);