ADO Parameterized Query

  • Thread starter Thread starter JSheble
  • Start date Start date
J

JSheble

After building a parameterized ADO query, is there a method or a statement
where you could see the actual query, with the parameterized values
included??
 
No. You would have to examine all the parameter values individually.

If you are using SQL Server you could use the profiler tool to see what is
being sent to sql server. In this case also, the parameter values are sent
separately from the query itself, they are never just substituted in.
 
Ok... thanx...

No. You would have to examine all the parameter values individually.

If you are using SQL Server you could use the profiler tool to see what
is
being sent to sql server. In this case also, the parameter values are
sent
separately from the query itself, they are never just substituted in.
 
Back
Top