vote up 0 vote down star

How can I view the SQL code of my query after it has been parameterized by Parameters.Append

flag

1 Answer

vote up 0 vote down check

You can't.

Parametrized Queries are not built like a string that you could output when ready.

It's always a two-step process:

  1. Prepare a query in the from of "SELECT foo FROM foo_table WHERE id = ?", send it to the server (and get an identifier back).
  2. Send all the parameters to fill the question marks to the server, along with the identifier of the prepared statement.

At no point in time the two (query and parameters) get in touch outside of the database server. (This is the reason why parametrized queries are much more secure than hand-made SQL strings).

link|flag
Thanks for the info! :-) ASP is so fucking lame. – Josh Feb 6 at 16:31
It has nothing to do with ASP. This is the general way things go with parametrized queries. – Tomalak Feb 6 at 16:35

Your Answer

Get an OpenID
or

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