F
Francisco Morales López
Guest
It is important to know the cause for which you want to use the value in the trigger, regardless of whether it is the app server or a normal procedure, the trigger inherits attributes of the previous procedure, these will be available as long as you prepare them properly. Ordinarily a value should not be used in the database trigger, since its objective is only processes on the record. If you still want to use a value in the trigger and inherit it from the call of the local procedure or app server, you can use a shared variable, it is not the most elegant method but it works. The disadvantage is that at compile time you should always load the definition of this variable into memory and ensure that it is created at run time.
Continue reading...
Continue reading...