MySQL Forums
Forum List  »  Stored Procedures

Re: Create Stored Procedure Issues with PhpMyAdmin
Posted by: Jacob Mathew
Date: March 20, 2008 08:55AM

This worked for me. In the SQL textarea, enter the following:

DROP PROCEDURE IF EXISTS sp_select_changelog
CREATE PROCEDURE sp_select_changelog()
BEGIN
SELECT * FROM sys_changelog_data;
END;

//


Finally, before clicking Go, change the delimiter text box content from ; to //

Options: ReplyQuote




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.