我的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
答案 0 :(得分:0)
设置参数后尝试读取dbCommand.CommandText
的值。
这应该为您提供将要执行的完整命令。但是,它不会为您提供存储过程的内容。