ASP Classic を使用してデータベースに接続していますが、存在しない proc を実行しようとすると、エラーは返されず、SQL プロファイラーは次の呼び出しを続けます。
SET FMTONLY OFF
SET FMTONLY OFF
SET FMTONLY ON EXEC gpa_proctest_ SET FMTONLY OFF
SET FMTONLY ON EXEC gpa_proctest_ SET FMTONLY OFF
そして、私のWebアプリケーションはエラーを待っています。
これが私のASPです:
set cmd = Server.CreateObject("ADODB.Command")
cmd.ActiveConnection = conn 'connection string
cmd.CommandText = "gpa_proctest_"
cmd.CommandType = adCmdStoredProc
cmd.Parameters.Append cmd.CreateParameter("@ID_PRJ", adInteger, adParamInput, , 33)
cmd.Parameters.Append cmd.CreateParameter("@LINHA", adChar, adParamInput, 1, "A")
set Rs1 = Server.CreateObject("ADODB.RecordSet")
Rs1.CursorLocation = adUseServer
Rs1.CursorType = adOpenStatic
Rs1.Open cmd
誰でも私を助けることができますか?
わかりました。