• 追加された行はこの色です。
  • 削除された行はこの色です。
* トランザクション [#a47eb55c]
 try
 {
     using (var tran = con.BeginTransaction())
     {
         try 
         { 
             con.Execute("insert into t1 values (1, 'ABC');");
             tran.Commit();
         }
         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