Help for this page

Select Code to Download


  1. or download this
    my $dbh  = DBI->connect( ... );
    my $text = "aaaaa\nbbbb";
    my $sql  = $dbh->quote($text);
    
  2. or download this
    my $sth = $dbh->prepare('insert into test(field1) values(?)');
    $sth->execute($text);