MySQL Forums
Forum List  »  MySQL Administrator

Stored Procedure Kills MYSQL ADMIN
Posted by: Evan Panagiotopoulos
Date: September 27, 2009 06:56AM

I am trying to learn stored procedures and after searching the web I created the following:

CREATE DEFINER=`root`@`localhost` PROCEDURE `all_counties`()
BEGIN
SELECT
*
FROM
`counties`;
END

If I try to edit it or delete it using the Catalogs->Stored Procedures option, the application ends.
I just downloaded this application from mysql.com and I am using a Mac and I am using version 5.0.67.

Thanks,

Evan



Edited 1 time(s). Last edit at 09/27/2009 07:06AM by Evan Panagiotopoulos.

Options: ReplyQuote


Subject
Written By
Posted
Stored Procedure Kills MYSQL ADMIN
September 27, 2009 06:56AM


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.