Sql Server事務簡單用法

來源:互聯網
上載者:User

標籤:style   blog   color   io   os   ar   for   資料   2014   

 1 var conStr = "server=localhost;database=Data;user=sa;pwd=123456"; 2             using (var connection = new SqlConnection(conStr)) 3             { 4                 connection.Open(); 5                 var sql = 6                     string.Format( 7                         "update dbo.AutoStationData set Temperture={0} where StationNum=58365 and DateTime=‘{1}‘", 8.5, 8                         new DateTime(2014, 01, 17, 09, 52, 00, 000));//可以正常執行的sql語句 9 10                 var sql2 = string.Format(11                         "update dbo.AutoStationData set Temperture={0} where StationNu=98801 and DateTime=‘{1}‘", 8.1,12                         new DateTime(2014, 01, 17, 09, 52, 00, 000)); //不可以正常執行的sql語句 不存在欄位StationNu13                 using (var command = new SqlCommand(sql,connection))14                 {15                     var transation = connection.BeginTransaction();//建立事務16                     try17                     {18                         command.Transaction = transation;19                         20                         command.CommandText = sql;21                         command.ExecuteNonQuery();22                         23                         command.CommandText = sql2;24                         command.ExecuteNonQuery();25                         26                         transation.Commit();27                     }28                     catch (Exception e1)29                     {30                         try31                         {32                             33                             transation.Rollback();34                         }35                         catch (Exception e2)36                         {37                             38                             Console.Write(e2.Message);39                         }40                         41                     }42                       43                 }44             }

寫一個可以正常執行的sql語句sql,一個錯誤的sql語句sql2。執行完21行代碼,在資料庫中查詢全表,會顯示正在查詢...,直接執行後面的代碼,由於sql2不能正確執行,跳轉到catch,執行復原,21行修改的欄位值還原。資料庫這才能執行全表查詢 正在查詢....變成查詢已成功執行。從執行第一個sql語句開始,知道提交事務成功,或者復原成功這段時間這個事務獨佔這一張表,也體現了事務的原子性。  

Sql Server事務簡單用法

相關文章

聯繫我們

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