查看在ASP页面中执行的确切查询

时间:2010-09-15 04:38:04

标签: sql asp-classic command ado

我的ASP代码中有存储过程,我希望看到完整的命令文本(不只是(?,?,?,?)将执行所以我不必打开SQL探查。

代码如下:

sSQL="myProc"   
Set dbCommand = Server.CreateObject("ADODB.Command")    
Set dbCommand.ActiveConnection = oConn  
dbCommand.CommandType = adCmdStoredProc 
dbCommand.Commandtext=sSQL  
dbCommand.Parameters.Append (dbCommand.CreateParameter("@tutorID", adInteger, adParamInput, 0, sTutorID))   
set oRST=dbCommand.Execute

1 个答案:

答案 0 :(得分:0)

设置参数后尝试读取dbCommand.CommandText的值。

这应该为您提供将要执行的完整命令。但是,它不会为您提供存储过程的内容。