Beispiel #1
0
        // interface

        public SQLExtCommand(DbCommand cmd, SQLExtConnection conn, DbTransaction txn = null)
        {
            InnerCommand = cmd;
            if (txn != null)
            {
                SetTransaction(txn);
            }
        }
Beispiel #2
0
 public SQLExtCommand(DbCommand cmd, SQLExtConnection conn, SQLExtTransactionLock <TConn> txnlock, DbTransaction txn = null)
 {
     connection   = conn;
     this.txnlock = txnlock;
     InnerCommand = cmd;
     if (txn != null)
     {
         SetTransaction(txn);
     }
 }
Beispiel #3
0
 public SQLExtRegister(SQLExtConnection cn, DbTransaction txn)
 {
     this.cn  = cn;
     this.txn = txn;
 }
Beispiel #4
0
 public SQLExtRegister(SQLExtConnection cn)
 {
     this.cn = cn;
 }