ASP.NET裡的交易處理

來源:互聯網
上載者:User

在 ADO.NET 中,可以使用 Connection 和 Transaction 對象來控制事務。若要執行事務,請執行下列操作:

  調用 Connection 對象的 BeginTransaction 方法來標記事務的開始。BeginTransaction 返回對 Transaction 的引用。請保留此引用,以便將其分配給在事務中登記的 Command。

  將 Transaction 對象分配給要執行的 Command 的 Transaction 屬性。如果通過活動的 Transaction 對象對 Connection 執行 Command,但該 Transaction 對象尚未分配給 Command 的 Transaction 屬性,則將引發異常。

  執行所需的命令。

  調用 Transaction 對象的 Commit 方法來完成事務,或調用 Rollback 方法來取消事務。

  以下程式碼範例使用 Microsoft? SQL Server? 上的 ADO.NET 來示範事務邏輯。

SqlConnection myConnection = new SqlConnection("Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI;");
myConnection.Open();
// 啟動一個事務
SqlTransaction myTrans = myConnection.BeginTransaction();

// 為事務建立一個命令
SqlCommand myCommand = new SqlCommand();
myCommand.Connection=myConnection;
myCommand.Transaction = myTrans;
try
{
myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, "Description")";
myCommand.ExecuteNonQuery();
myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, "Description")";
myCommand.ExecuteNonQuery();
myTrans.Commit();
Console.WriteLine("Both records are written to database.");
}
catch(Exception e)
{
myTrans.Rollback();
Console.WriteLine(e.ToString());
Console.WriteLine("Neither record was written to database.");
}
finally
{
myConnection.Close();
}
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.