Help for this page

Select Code to Download


  1. or download this
       $insStr = qq{insert into table (string) values(?)};
       $sthIStr = $dbh->prepare($insStr);
       $sthIStr->execute($UTF8_txt);
    
  2. or download this
      $insStr = qq{insert into table (string) values(N'$UTF8_txt')};
      $dbh->do("$insStr");