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