Warning |
---|
This handler is outdated. Please use RunSqlScriptHandler. |
Description
This handler can be used as an ActionHandler or a decision handler!
ActionHandler
Uses user-defined parameters to call a MySQL function, which has been stored in the database. The returned value is then written into a process variable.
If the result is null, a default value can be specified.
DecisionHandler
If the handler is placed on an XOR, it uses user-defined parameters to call a MySQL function, which has been stored in the database and decides which way to go based on the return value.
If the result is null, a default transition can be specified.
...
Class
Code Block |
---|
com.dooris.bpm.actionhandler.CallSqlFunctionHandler |
Parameter
Parameter | Default value | Description | Valid examples | ||
---|---|---|---|---|---|
functionName | Name of the MySQL function. This may also contain a process variable. |
| |||
params | The parameters to be passed to the MySQL function.
|
| |||
resultName | Name of the variable to which the returned value is written. |
| |||
defaultTransition | Decisionhandler ActionHandler |
|
...