Currently I have a stored procedure which works fine without the out variable, but i wanted to put one in so that i can ensure that my code on the Delphi Application does no run until the Stored Procedure has finished.
Can someone see if I have done this right as i keep getting an error regarding out not being a variable. Is anyone able to explain this?
Please see below my code I am using.
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_moveToWizconTemp`(
OUT success int)
BEGIN
//Code to do some processing and end of SP Processing
SET success = 1;
END
Regards,
Jordan