Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dionsis

    printing the query after binding parameters

    also bearing in mind that i would need to replace 4 ?'s with 4 different variables
  2. dionsis

    printing the query after binding parameters

    does the sth->execute(); not execute the bound query? surely for it to do that it must know the query is correct form and should have a copy of the query it ran in its meta data somewhere apologies if this sounds stupid im only new to perl could you show me an example replace ? with parameter...
  3. dionsis

    printing the query after binding parameters

    hey im looking to find out how to print a query back after binding the parameters to the query $sql contains a query with placeholders $sth = $package->prepare($sql); $sth->bind_param(1, $a); $sth->bind_param(2, $b); $sth->bind_param(3, $c); $sth->bind_param(4, $d); $sth->execute; once the...

Part and Inventory Search

Back
Top