SQL Server stored procedure parameters

前端 未结 5 1547
[愿得一人]
[愿得一人] 2020-12-08 07:09

I am developing a framework, where in I am a calling stored procedure with dynamically created parameters. I am building parameter collection at the runtime.

The pr

5条回答
  •  鱼传尺愫
    2020-12-08 07:59

    You are parsing wrong parameter combination.here you passing @TaskName = and @ID instead of @TaskName = .SP need only one parameter.

提交回复
热议问题