Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("SELECT * FROM foo WHERE bar = ?");
    $sth->execute("my 'scary variable here';");
    
  2. or download this
    $dbh->do("SELECT * FROM foo WHERE bar = " . "my scary 'variable here';
    +");