MySQL Forums
Forum List  »  Stored Procedures

Re: Stored Procedures not showing in Query Browser
Posted by: William Wood
Date: March 05, 2012 04:45AM

here you go.

DELIMITER $$

DROP PROCEDURE IF EXISTS `volunteer`.`sp_getVolInfo` $$

CREATE DEFINER=`woodw`@`%` PROCEDURE `volunteer`.`sp_getVolInfo`(ph VARCHAR(10))
BEGIN
SELECT recordid, UPPER(volname) AS volname
FROM volunteer.volinfo
WHERE volphone = ph;
END $$

DELIMITER ;

The database is called 'volunteer' and the user is woodw. I have created SP's like this for over 7 years and this is the first time this has happened. I got another thread that said for me to upgrade to the latest and greatest MySql. Because I am useing JSP's and also PHP in some cases I have been reluctant to upgrade. Some of the connectors do not work and this is working to some degree. As for the Workbench. I can not figure out how to use that with any kind of success. Thanks for your reply.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Stored Procedures not showing in Query Browser
1819
March 05, 2012 04:45AM


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.