Beispiel #1
0
 public SqlStatement(DbAccess db)
 {
     db.MustNotBeNull();
     _db  = db;
     _cmd = _db.CreateCommand();
 }
Beispiel #2
0
 public override void Rollback()
 {
     _db.Rollback();
     _db = null;
 }
Beispiel #3
0
 public SProcStatement(DbAccess db) : base(db)
 {
 }
Beispiel #4
0
 public MyTransactionWrapper(DbAccess db)
 {
     _db = db;
 }
Beispiel #5
0
 public PagedSqlStatement(DbAccess db) : base(db)
 {
 }