Exemplo n.º 1
0
 internal StormTransaction(StormConnection connection, IDbTransaction transaction, bool AutoCommit)
 {
     this.autoCommit    = AutoCommit;
     this.transaction   = transaction;
     this.connection    = connection;
     this.transactionid = Util.UCode();
 }
Exemplo n.º 2
0
 internal StormTransaction(StormConnection connection, IDbTransaction transaction)
 {
     this.transaction   = transaction;
     this.connection    = connection;
     this.transactionid = Util.UCode();
 }