Transaction定義:
資料庫進行大量,批次的資料處理程序時,如果無法100%完成所有處理程序,那麼就該暫停處理並且回復到一開始未執行之狀態,稱之。
(ex:ATM匯款功能)
簡而言之,Transaction要嘛一次全部執行成功,否則就是全部失敗回到初始狀態。
重點:
1.Transaction是業界常用功能,確保一系列的處理過程皆能100%執行成功,才把資料寫進資料庫。
2.要加入Transaction參考。
3.Transcation最好搭配using區塊一起使用。
4.Transcation執行成功的話,會執行到.Complete()方法,否則就是到Rollback(完全回到初始狀態)。
前端:
拉入兩個GV,來看看插入資料後的GV結果。
後端:一個是完全正確的三筆插入資料庫指令,另一個則是故意最後一筆SQL指令寫錯,來互相比較有何差別。(Transcation可寫於PageLoad事件中)
try
{
using(TransactionScope scope = new TransactionScope())
{
int myInt = 0;
//Create and open the SQL connection.
//The work done on this connection will be a part of the transaction created by the TransactionScope
using(SqlConnection Conn = new SqlConnection(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["testConnectionString"].ConnectionString))
{
//== 連結資料庫的連接字串 ConnectionString ==
Conn.Open();
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = Conn;
//Insert the first record. #1
myCommand.CommandText = "Insert into test(test_time,class,title,summary,article,author) Values('" + DateTime.Now.ToShortDateString() + "','政治','Transaction-1','Summary ---- Transaction-1 ---- Summary','Transaction1<br>Transaction1<br>Transaction1','Transaction1')";
myInt = myCommand.ExecuteNonQuery();
Response.Write("<br />第一筆資料新增成功--" + myInt);
//Insert the second record. #2
myCommand.CommandText = "Insert into test(test_time,class,title,summary,article,author) Values('" + DateTime.Now.ToShortDateString() + "','政治','Transaction-2','Summary ---- Transaction-2 ---- Summary','Transaction2<br>Transaction2<br>Transaction2','Transaction2')";
myInt = myCommand.ExecuteNonQuery();
Response.Write("<br />第二筆資料新增成功--" + myInt);
//***************************************
//Insert the third record. #3
//正確的SQL指令
myCommand.CommandText = "Insert into test(test_time,class,title,summary,article,author) Values('" + DateTime.Now.ToShortDateString() + "','政治','Transaction-3','Summary ---- Transaction-3 ---- Summary','Transaction3<br>Transaction3<br>Transaction3','Transaction3')";
myInt = myCommand.ExecuteNonQuery();
Response.Write("<br />第三筆資料新增成功--" + myInt);
//Insert the third record.
//錯誤的SQL指令。**********************
myCommand.CommandText = "Insert into XXXXXXXXXX(test_time,class,title,summary,article,author) Values('" + DateTime.Now.ToShortDateString() + "','政治','Transaction-3','Summary ---- Transaction-3 ---- Summary','Transaction3<br>Transaction3<br>Transaction3','Transaction3')";
myInt = myCommand.ExecuteNonQuery();
Response.Write("<br />第三筆資料新增成功--" + myInt);
Conn.Close();
}
scope.Complete();
Response.Write("<hr />**** 交 易 成 功 ****");
}
}
catch(TransactionException ex)
{
Response.Write("<hr />交易失敗---- ");
Response.Write(ex);
}
}
比較對與錯的SQL指令執行後重點:
1.前兩個SQL指令雖然正確但是因為第三筆SQL指令錯誤,所以並沒有寫到資料庫中。
2.但是由於資料庫id是採AUTO增加,所以前兩筆成功的SQL指令id還是增加到資料庫中,但是其他內容並無寫入。