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