* トランザクション [#a47eb55c]


** トランザクション [#q54689d8]
 try
 {
     using (var tran = con.BeginTransaction())
     {
         try 
         { 
             con.Execute("insert into t1 values (1, 'ABC');");
             tran.Commit();
         }
         catch
         catch (Exception e)
         {
             tran.Rollback();
         }
     }
 }
 finally
 {
     con.Execute("drop table t1");
 }


** 参考 [#ba571a1e]
- http://msdn.microsoft.com/ja-jp/library/86773566(v=vs.110).aspx
- https://github.com/SamSaffron/dapper-dot-net/blob/master/Tests/Tests.cs

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS