cregox
cregox

Reputation: 18408

Classic ASP: ADODB.Command output

Following this other question on how to make parametrized sql query on classic asp, I now ask how to debug it?

I can write in a CommandText with it, and execute, but I can't see which SQL command I'm actually trying to run. So is there a way to check ADODB.Command's output to SQL?

Upvotes: 1

Views: 1402

Answers (1)

D'Arcy Rittich
D'Arcy Rittich

Reputation: 171451

Unfortunately not, you'll need to replace the query parameter tokens with the actual values yourself when outputting for tracing.

Upvotes: 2

Related Questions