MySQL Forums
Forum List  »  Stored Procedures

Re: Calling sp from myPhpAdmin vs MySqlWorkbench
Posted by: Alex Mendy
Date: December 20, 2014 07:30PM

Peter, the version of phpMyAdmin I am using is 4.2.7deb0.1
I've created this stored procedure. If I execute it in MySqlWorkbench and pass NULL for all params, I get results back. The same returns nothing in phpMyAdmin. This is quite frustrating.

----------------------------------
CREATE DEFINER=`root`@`localhost` PROCEDURE `TestProcedure`(IN `Param1` INT, IN `Param2` DECIMAL, IN `Param3` FLOAT)
BEGIN
SELECT 'A' AS Test1;
SELECT 'B' AS Test2;
SELECT 'C' AS Test3;
END;
----------------------------------

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Calling sp from myPhpAdmin vs MySqlWorkbench
1066
December 20, 2014 07:30PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.