Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ERROR 1414

Status
Not open for further replies.

boske3

Programmer
Mar 11, 2006
20
RS
Hi!
i try to make some procedure and i got Error 1414,

Code that i executed is below:

****************************************************

mysql> drop procedure sp_inout;
Query OK, 0 rows affected (0.13 sec)

mysql> create procedure sp_inout(INOUT P INT) SET @x=P*2;
Query OK, 0 rows affected (0.00 sec)

mysql> call sp_inout(2);
ERROR 1414 (42000): OUT or INOUT argument 1 for routine test.sp_inout is not a variable

***************************************************
What that error means?
and why is he showing when i call procedure.

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top