Module for executing and testing MySQL functions:
The function will be executed with the entered parameters.
The function can be modified and the execution repeated.
With ROLLBACK: The function is executed as a transaction with ROLLBACK. Thus, data changes in tables during execution are undone. If data is inserted into a table with an autoincrement field, the autoincrement value of the table also increases with ROLLBACK.
ROLLBACK only works if no COMMIT is executed within the function.
|