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