Yet another Trigger question

djeanveau

New Member
Greetings,

I have a simple yes/no question I need answered.

If I have a trigger from table A that writes to table B when written to AND then table B is triggered to write to table A when written to, can we experience an infinite loop or is Progress smart enough not to do so?

Thanks very much...
 
No. Triggers can't be called recursively. When the 4GL code inside a trigger begins to execute, the trigger is effectively disabled until the execution of the code ends.
 
Top