Help for this page

Select Code to Download


  1. or download this
    $sth->prepare( qq{ select foo from bar where baz = $qux } );
    $sth->execute;
    
  2. or download this
    $sth->prepare( qq{ select foo from bar where baz = ? } );
    $sth->execute($qux);