MySQL Forums
Forum List  »  Stored Procedures

Re: Problem with creating a stored procedure
Posted by: Mike Markgraf
Date: April 19, 2012 11:50PM

This is what I get now. Could it be possible that the webserver I am using does not allow for MySQL stored procedures?

Error

SQL query:

Delimiter $$ CREATE PROCEDURE `sp_addChild`
(
IN CID int,
IN fname varchar( 50 ),
IN lname varchar( 50 ),
IN DOB DATETIME,
IN gender varchar( 10 ),
IN goals varchar( 255 ),
IN nameMeaning varchar( 255 ),
IN orphaned tinyint,
IN family varchar( 255 ),
IN eligible tinyint,
IN notes varchar( 255 )
)
BEGIN INSERT INTO Children
(
Child_ID,
Child_Fname,
Child_lname,
Child_DOB,
Child_gender,
Child_goals,
Child_nameMeaning,
Child_orphaned,
Child_family,
Child_eligible,
Child_notes
)
VALUES (
CID, fname, lname, DOB, gender, goals, nameMeaning, orphaned, family, eligible, notes
)End$$
Delimiter;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Delimiter $$

CREATE PROCEDURE `sp_addChild` (
IN CID int,
IN fname varchar(' at line 1

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Problem with creating a stored procedure
1291
April 19, 2012 11:50PM


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.