示例#1
0
 private static void EndTransaction(TransactionHandle handle)
 {
     if (handle != null && handle.Status == TransactionStatus.Started)
     {
         handle.CommitTransaction();
     }
 }
示例#2
0
 public void ForceCloseTransaction(TransactionHandle handle)
 {
     TransactionManager.Log("ForceCloseTransaction - AUTO STRAT: Ending Transaction");
     if (handle != null && handle.Status == TransactionStatus.Started)
     {
         handle.CommitTransaction();
     }
 }
示例#3
0
 public void ForceCloseTransaction(TransactionHandle handle)
 {
     TransactionManager.Log("ForceCloseTransaction - AUTO STRAT: Ending Transaction");
     if (handle != null && handle.Status == TransactionStatus.Started)
         handle.CommitTransaction();
 }
示例#4
0
 private static void EndTransaction(TransactionHandle handle)
 {
     if (handle != null && handle.Status == TransactionStatus.Started)
         handle.CommitTransaction();
 }