Help for this page

Select Code to Download


  1. or download this
    $SQL_STATEMENT = qq!SELECT * FROM FOO WHERE THIS = ?!;
    $sth = $dbh->prepare($SQL_STATEMENT);
    $sth->execute($value_for_this);
    
  2. or download this
    $sth = $dbh->prepare('SELECT * FROM FOO WHERE THIS = ?');
    $sth->execute($value_for_this);