直播中
s首先我們先用VB 作一個最簡單的組件 ,因為是介紹性的文章,所以這個組件是非常的的簡單,在具體的
工作中,可以寫個 比這個 業(yè)務(wù)復雜的多的 組件
Project Name: testSQLCOM
Class Name: TestMath
Public Function AddMe(a As Long, b As Long) As Long
AddMe = a + b
End Function
編譯生成后,我們就可以在 Sql Server 中對這個 Com 組件進行調(diào)用了
declare @i int
declare @intRet int
declare @intRetCode int
DECLARE @strErr varchar (255)
DECLARE @strErr1 varchar (255)
/* 首先創(chuàng)建Com 實例 */
exec @ret_code = sp_OACreate "testSQLCOM.TestMath", @i out
IF @intRetCode <> 0
BEGIN
/* 創(chuàng)建實例 失敗 */
EXEC sp_OAGetErrorInfo @i, @strErr OUT, @strErr1 OUT
PRINT "創(chuàng)建實例失敗,失敗的原因是:: " + @strErr + " " + @strErr1
RETURN
END
/* 創(chuàng)建成功,開始調(diào)用 */
EXEC @intRetCode = sp_OAMethod @i,'AddMe',@ret OUT,100,200
IF @intRetCode <> 0
BEGIN
/* 調(diào)用方法出錯 */
EXEC sp_OAGetErrorInfo @i, @strErr OUT, @strErr1 OUT
PRINT "調(diào)用方法失敗,失敗的原因是:: " + @strErr + " " + @strErr1
EXEC sp_OADestroy @i
RETURN
END
PRINT "返回的結(jié)果是" + Str(@intRet)
exec sp_OADestroy @i
以前是存儲過程的輸出
Step 4:
返回的結(jié)果是 300