溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

度量快速開發(fā)平臺中調(diào)用存儲過程介紹

發(fā)布時間:2020-04-29 20:32:43 來源:網(wǎng)絡 閱讀:223 作者:fishwood9701 欄目:開發(fā)技術

度量快速開發(fā)平臺,可以直接調(diào)用數(shù)據(jù)庫中做好的存儲過程,并能得到存儲過程返回的值。參看調(diào)用存儲過程的代碼:

dim sp=CreateProcedure("default","DELIT_PRO_CALL")
'AddInputParam("參數(shù)名稱",參數(shù)枚舉,參數(shù)值) 添加存儲過程輸入?yún)?shù)
'參數(shù)枚舉:數(shù)字(13),日期(6),字符(22)
sp.AddInputParam("num_in",13,20084)
sp.AddInputParam("date_in",6,now())
sp.AddInputParam("var_in",22,"張三")
'AddOutputParam("參數(shù)名稱",參數(shù)枚舉,內(nèi)容長度) 添加存儲過程輸出參數(shù)
'參數(shù)枚舉:數(shù)字(13),日期(6),字符(22),游標(5)
sp.AddOutputParam("num_out",13,0)
sp.AddOutputParam("date_out",6,8)
sp.AddOutputParam("var_out",22,400)
'Execute 執(zhí)行存儲過程,傳入?yún)?shù)指示是否提交事務(True表示提交事務,)
sp.Execute(false)
'GetOutPraramValue 獲取存儲過程輸出參數(shù)的值
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

轉(zhuǎn)載請注明出處:

撰寫人:度量科技http://www.delit.cn

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI