ADO Parameterized Query

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??
 
M

Marina

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.
 
J

JSheble

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top