DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
TransactionEventType.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Transactions {
4  public enum TransactionEventType {
5  Begin = 1,
6  Commit = 2,
7  Rollback = 3
8  }
9 }