I would like to execute a stored procedure, and return immediately back to the script, and the SP shall run in the background until complete, and should not be killed by the PHP process.
How can this be done in PHP?
I would like to execute a stored procedure, and return immediately back to the script, and the SP shall run in the background until complete, and should not be killed by the PHP process.
How can this be done in PHP?
You could trigger the execution of a separate PHP script that would run asynchronously (and execute the stored procedure~)