Sql Server預存程序之異常的簡單處理

來源:互聯網
上載者:User

先貼一個自己寫的添加日誌的預存程序:

ALTER procedure [dbo].[WriteBlog](@in_id varchar(10),@in_event varchar(100),@out_parameter varchar(10) output) as/**寫入日誌的預存程序@in_ID  使用者ID@in_event 操作事件@in_datetime 操作時間@out_parameter 傳回值 0 操作成功 1 寫入失敗*/declare @in_datetime datetime;set @in_datetime=GETDATE();begin tryinsert into Blog values(@in_ID,@in_event,@in_datetime);set @out_parameter='0';end trybegin catchset @out_parameter=@@ERROR;end catchRETURN

說明:

預存程序的作用就是根據每次對資料庫的操作書寫其日誌資訊。

異常的處理,很關鍵,特別是在函數或預存程序中得到函數或過程的傳回值,如果可以將異常的處理也包含到傳回值裡面,這樣在調用該過程或函數時候就會知道出現了那些異常,這樣方便一步步的調試。

預存程序裡面也會有try catch語句,書寫如上例子。

具體異常介紹見部落格:

http://www.cnblogs.com/sshoub/archive/2011/08/12/2136267.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.