How can I view the SQL code of my query after it has been parameterized by Parameters.Append
|
|
You can't. Parametrized Queries are not built like a string that you could output when ready. It's always a two-step process:
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). |
||||
|
