Esempio n. 1
0
 public DBTableTrigger(DBTriggerPosition Actions, Decimal Position, IStatement Statement)
 {
     this.Actions = Actions;
     this.Position = Position;
     this.Statement = Statement;
 }
Esempio n. 2
0
 private bool HasPosition(DBTriggerPosition pos, IDBTableTrigger trigger)
 {
     return ((pos & trigger.Actions) == pos);
 }
Esempio n. 3
0
 public void Execute(DBTriggerPosition action, IDatabaseSchema database, IDBTable table, string query, DataRow row)
 {
     throw new NotImplementedException();
 }