標籤:blog http io ar 資料 div cti html log
來源於:http://www.cnblogs.com/zhuifengnianshao/archive/2010/11/24/1886939.html事務(Transaction)是並發控制的單位,是使用者定義的一個操作序列。這些操作要麼都做,要麼都不做,是一個不可分割的工作單位。通過事務,SQL Server能將邏輯相關的一組操作綁定在一起,以便伺服器保持資料的完整性。在sql server+ .net 開發環境下,有兩種方法能夠完成事務的操作,保持資料庫的資料完整性;一個就是用sql預存程序,另一個就是在ADO.NET中一種簡單的交易處理;現在通過一個典型的銀行轉賬的例子來說明一下這兩個例子的用法我們先來看看sql預存程序是如何來完成事務的操作的:首先建立一個表:create database aaaa --建立一個表,包含使用者的帳號和錢數gouse aaaacreate table bb( ID int not null primary key, --帳號 moneys money --轉賬金額)insert into bb values (‘1‘,‘2000‘) --插入兩條資料insert into bb values (‘2‘,‘3000‘)用這個表建立一個預存程序:create procedure mon --建立預存程序,定義幾個變數@toID int, --接收轉賬的賬戶@fromID int , --轉出自己的賬戶@momeys money --轉賬的金額asbegin tran --開始執行事務 update bb set [email protected] where [email protected] -執行的第一個操作,轉賬出錢,減去轉出的金額update bb set [email protected] where [email protected] --執行第二個操作,接受轉賬的金額,增加 if @@error<>0 --判斷如果兩條語句有任何一條出現錯誤begin rollback tran –開始執行事務的復原,恢複的轉賬開始之前狀態return 0endgo else --如何兩條都執行成功begin commit tran 執行這個事務的操作return 1endgo
SQL中的事物【轉】