SQL Server 2005 線上叢書 (2008 年 11 月)
http://www.microsoft.com/downloads/zh-tw/details.aspx?familyid=BE6A2C5D-00DF-4220-B133-29C1E0B6585F&displaylang=zh-tw
你如果用ADO.NET的話
可以用 SqlCommand 去指定 CommandType
如果嫌太麻煩也可以用自組字串的方式串起來 (須注意SQL資料隱碼的問題)
例:
string strSql = "exec [dbo].[sp_getMyTable_byID] "+ID.ToString();