0

help ! i keep on getting this error when calling a routin on the mysql database. all the other commands on my php file that connects to the database are all working. it's only on this routine that gives this error . anyone who can help me ? enter image description here

the code for the routine is as follows:

CREATE DEFINER=`root`@`localhost` PROCEDURE `InsServiceRepair`(IN `requestID` CHAR(10), IN `requestDate` DATETIME, IN `requestorID` CHAR(10), IN `repairDescription` VARCHAR(100), IN `letterAddress` VARCHAR(50))
NO SQL
begin

insert into Service values
(requestID, requestDate, requestorID, 0);

insert into `Repair` values
(requestID, repairDescription, letterAddress);
end

thank you!

4

0 回答 0