|
- Trigger on the functions for handling tables
- Variables used to manage the triggers
HDescribeTrigger (Function) In french: HDécritTrigger
Not available with this kind of connection
// In the initialization code of the project LOCAL TriggerResult is boolean // Create a trigger for all the analysis files TriggerResult = HDescribeTrigger("*", "HADD,HMODIFY," + ... "HDELETE, HCROSS,HWRITE", "CheckUserRights", hTriggerBefore) // "CheckUserRights" is a global procedure of the project IF TriggerResult = False THEN Error("Error on a trigger: " + HErrorInfo) RETURN END
Syntax
<Result> = HDescribeTrigger(<List of HFSQL data files> , <List of HFSQL functions> , <WLanguage procedure> , <Type of trigger>)
<Result>: Boolean - True if the operation was performed,
- False if a problem occurred. HErrorInfo is used to identify the error.
<List of HFSQL data files>: Character string (with quotes) Logical name of one or more HFSQL data files. To specify several names of data files, the names of the data files must be separated by a comma (","). To use all the data files found in the analysis, this parameter must be equal to "*". <List of HFSQL functions>: Character string (with quotes) Name of one or more HFSQL or TableXXX functions on which the trigger must be implemented. To specify several names of functions, the names of functions must be separated by a comma (","). You have the ability to define triggers on the following functions: <WLanguage procedure>: Procedure name Name of the WLanguage procedure that will be run when a trigger is activated on the specified HFSQL functions. <Type of trigger>: Integer constant Indicates the type of trigger. | | hTriggerBefore | The procedure is run before the HFSQL function. | hTriggerAfter | The procedure is run after the HFSQL function. |
Remarks Trigger on the functions for handling tables When using one of these functions for handling the tables, if a trigger is defined for the corresponding HFSQL function, the trigger is automatically activated. Variables used to manage the triggers A trigger procedure accepts no parameter. However, some HFSQL state variables are positioned before each call: | | H.FileName | Character string: Logical name of the data file whose trigger is activated | H.Action | Character initialized to "A" for a Before trigger and to "P" for an After trigger. | H.TriggerFunction | Character string: Name of the HFSQL function that activated the trigger | H.ToDo | During the execution of a before trigger:- cancel the execution of the HFSQL function by assigning "A" to the HFSQL state variable: H.ToDo = "A". In this case, the action is not performed and the function (HAdd, HModify, ...) returns True (no error).
- cancel the execution of the current HFSQL function by assigning "E" to the HFSQL state variable: H.ToDo = "E". In this case, the action is not performed and the function (HAdd, HModify, ...) returns False. The error message is as follows: "The action on XXX file was interrupted by the trigger".
| Remark: When a "BEFORE" trigger and an "AFTER" trigger are associated with a HFSQL function, if the "BEFORE" trigger cancels the execution of the HFSQL function (by positioning H.ToDo to "A"), the "AFTER" trigger is not run.
This page is also available for…
|
|
|
| |
| Not only on HFCS databases |
|
| According to the online help: HdescribeTrigger "Adds or modifies a trigger on a HFSQL data file"
I have used HdesdcribeTrigger on Postgresql databases also. |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |