vote up 3 vote down star
1

I'm using the mysqli extension in PHP and I'm wondering, is there possibly any way to see a prepared query as it will be executed on the server, e.g. The query is something like this

select * from table1 where id = ? and name = ?

but I want to see the query after the values are filled in, like this:

select * from table1 where id = 20 and name = "John"
flag

What happens when you var_dump() your mysqli_stmt object? – Jon Cram Nov 20 '08 at 13:04

4 Answers

vote up 1 vote down check

Duplicate of PDO Prepared Statements

Short answer: no. A prepared query will never be converted to the query you expect. It's executed directly by the database server. You can use mysql's query log or PDO's undocumented function debugDumpParams, but both are just approximations.

link|flag
Actually if you enable MySQL query logging, it does log a prepared query with parameter values interpolated into it. Wacky! – Bill Karwin Nov 20 '08 at 18:39
Weird stuff that. – troelskn Nov 21 '08 at 15:01
vote up 0 vote down

See it where? If it's your code you have the query and you have the prepared parameters, log them separately or replace in the original query string. If the binding will fail you will get an error, otherwise you should expect the same values to be "filled" in as you specified them.

link|flag
vote up 3 vote down

Turn on mysql query logging and it will log all queries to a text file for you to review.

link|flag
vote up 0 vote down

Its the way most of the times I am debugging mysql quires:

$q = "select * from table1 where id = ".$id." and name = ".$name; echo $q;

The output generates all variables assigned to the query.

Hope I understood you exactly, what you wanted.

link|flag
I think he means when he prepares "select * from table1 where id = ? and name = ?" and then subsequently executes it providing parameters $id and $name. – Bill Karwin Nov 20 '08 at 18:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.