Hallo,
vielleicht könnt Ihr mir einen Tipp geben was ich machen kann.
Ich möchte eine Stored Procedure erstellen, jedoch beim Upload erhalte ich immer wieder eine Fehlermeldung.
Fehlermeldung: Syntax-Error bei INSERT INTO `events`
ich weiß nicht was ich falsch mache.
::::::::::::::::::::::::::::::::::::::::::::::::::::
CREATE PROCEDURE addevent (
_userid int(11),
_eventcat int(3),
_city varchar(40),
_bundesland int(2),
_subject varchar(250),
_event mediumtext,
_eventdate date,
_public tinyint(1),
_allowsmilies tinyint(1),
_allowhtml tinyint(1),
_allowbbcode tinyint(1),
_allowimages tinyint(1)
)
BEGIN
INSERT INTO `events` (`userid`, `eventcat`, `city`, `bundesland`, `subject`, `event`, `eventdate`, `public`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimages`)
VALUES (_userid, _eventcat, _city, _bundesland, _subject, _event, _eventdate, _public, _allowsmilies, _allowhtml, _allowbbcode, _allowimages);
select LAST_INSERT_ID();
end;
vielleicht könnt Ihr mir einen Tipp geben was ich machen kann.
Ich möchte eine Stored Procedure erstellen, jedoch beim Upload erhalte ich immer wieder eine Fehlermeldung.
Fehlermeldung: Syntax-Error bei INSERT INTO `events`
ich weiß nicht was ich falsch mache.
::::::::::::::::::::::::::::::::::::::::::::::::::::
CREATE PROCEDURE addevent (
_userid int(11),
_eventcat int(3),
_city varchar(40),
_bundesland int(2),
_subject varchar(250),
_event mediumtext,
_eventdate date,
_public tinyint(1),
_allowsmilies tinyint(1),
_allowhtml tinyint(1),
_allowbbcode tinyint(1),
_allowimages tinyint(1)
)
BEGIN
INSERT INTO `events` (`userid`, `eventcat`, `city`, `bundesland`, `subject`, `event`, `eventdate`, `public`, `allowsmilies`, `allowhtml`, `allowbbcode`, `allowimages`)
VALUES (_userid, _eventcat, _city, _bundesland, _subject, _event, _eventdate, _public, _allowsmilies, _allowhtml, _allowbbcode, _allowimages);
select LAST_INSERT_ID();
end;
Kommentar