您好,登錄后才能下訂單哦!
度量快速開發平臺,可以直接調用數據庫中做好的存儲過程,并能得到存儲過程返回的值。參看調用存儲過程的代碼:
dim sp=CreateProcedure("default","DELIT_PRO_CALL") 'AddInputParam("參數名稱",參數枚舉,參數值) 添加存儲過程輸入參數 '參數枚舉:數字(13),日期(6),字符(22) sp.AddInputParam("num_in",13,20084) sp.AddInputParam("date_in",6,now()) sp.AddInputParam("var_in",22,"張三") 'AddOutputParam("參數名稱",參數枚舉,內容長度) 添加存儲過程輸出參數 '參數枚舉:數字(13),日期(6),字符(22),游標(5) sp.AddOutputParam("num_out",13,0) sp.AddOutputParam("date_out",6,8) sp.AddOutputParam("var_out",22,400) 'Execute 執行存儲過程,傳入參數指示是否提交事務(True表示提交事務,) sp.Execute(false) 'GetOutPraramValue 獲取存儲過程輸出參數的值 dim out1=sp.GetOutPraramValue("num_out") dim out2=sp.GetOutPraramValue("date_out") dimout3= sp.GetOutPraramValue("var_out")
原文地址:http://plat.delit.cn/thread-147-1-1.html
轉載請注明出處:
撰寫人:度量科技http://www.delit.cn
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。