tags:

views:

691

answers:

1

Is it possible to get a query string from a PDO object with bound parameters without executing it first? I have code similar to the following (where $dbc is the PDO object):

$query = 'SELECT * FROM users WHERE username = ?';
$result = $dbc->prepare($query);
$username = 'bob';
$result->bindParam(1, $username);
echo $result->queryString;

Currently, this will echo out a SQL statement like: "SELECT * FROM users WHERE username = ?". However, I would like to have the bound parameter included so that it looks like: 'SELECT * FROM users WHERE username = 'bob'". Is there a way to do that without executing it or replacing the question marks with the parameters through something like preg_replace?

+1  A: 

In short: no. See http://stackoverflow.com/questions/210564/pdo-prepared-statements/210693#210693

If you want to just emulate it, try:

echo preg_replace('?', $username, $result->queryString);
Crescent Fresh
Thanks for the link, I didn't see it in the related questions part.
VirtuosiMedia