Jump to content

Obter a Query do PDO


Carlos Rocha

Recommended Posts

Bom, como exemplo vou postar abaixo:

sql = "SELECT * FROM `example` WHERE `:field` = :value";

$this->statement = $this->db->prepare($sql);

$dynamicField = "nome";

$this->statement->bindParam(':field', $dynamicField);
$this->statement->bindParam(':value', 'mick');

$this->statement->execute();

O que pode ser feito para eu obter, como siada, a consulta SQL tratada? Tipo:

 

SELECT * FROM `example` WHERE nome = 'nick'

 

Isso após o execute?

Edited by carcleo
Link to comment
Share on other sites

Não fui confirmar, mas pelo que conheço de situações semelhantes, só podes fazer bind a valores e não a colunas (o nome do método até indica isso).
Ou seja, nesse exemplo o "nome" tem de ser dado na string sql inicial.

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.