MySQL Forums
Forum List  »  Stored Procedures

Re: How to alter procedure and functions
Posted by: Peter Brawley
Date: January 12, 2006 03:27PM

??? You CANNOT change the code of an sproc with ALTER PROC.

Therefore to change the code of sproc MySP, you must

DROP PROCEDURE IF EXISTS MySP;

DELIMITER |

CREATE PROCEDURE MySp( ... )
...

DELIMITER ;

What is unclear?

PB

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to alter procedure and functions
2082
January 12, 2006 03:27PM


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.