$sth->prepare( qq{ select foo from bar where baz = $qux } ); $sth->execute; #### $sth->prepare( qq{ select foo from bar where baz = ? } ); $sth->execute($qux);