java.sql.SQLException: Parameter number X is not an OUT parameter
- by Frederik
Hi guys,
I'm struggling with getting the result OUT variable from a MySQL stored procedure. I get the following error:
java.sql.SQLException: Parameter number 3 is not an OUT parameter
The stored procedure looks like this:
CREATE DEFINER=`cv_admin`@`localhost` PROCEDURE `CheckGameEligibility`(
IN gID INT(10),
IN uID INT(10),
OUT…