OUT or INOUT parameter not working
问题 If I create a stored procedure in MySQL with an OUT or INOUT parameter, it does not work. Even if I leave the stored procedure empty. The DDL is as follows: CREATE DEFINER=`root`@`localhost` PROCEDURE `testing_inout`(`a` int,INOUT `b` int) BEGIN END The first parameter is a regular IN parameter. The second one is an INOUT paremeter (even if set as OUT the same problem persists) When I call this stored procedure, I get an error stating: OUT or INOUT argument 2 for routine db_name.testing_inout