Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("SELECT CONCAT('My', '''', 'QL')");
    
  2. or download this
    my $sth = $dbh->prepare('SELECT CONCAT(?, ?, ?)');
    $sth->execute(qw(My ' QL));