Code Keeps Timing Out

后端 未结 4 1687
南笙
南笙 2021-01-22 18:18

So, we\'ve got this set of code that, for some reason, keeps timing out. It\'s not the stored procedure that it\'s running, because that runs fine. Also, if we remove the para

4条回答
  •  旧巷少年郎
    2021-01-22 18:41

    have you tried

    myCommand.Parameters.AddWithValue("@studynumber", studynumber);
    

    instead of:

    myCommand.Parameters.AddWithValue("@study", studynumber); 
    

提交回复
热议问题