Module for executing and testing MySQL procedures:
The procedure will be executed with the entered parameters.
The procedure can be modified and the execution repeated.
With ROLLBACK: The procedure 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 procedure.
|