MySQL query unknown error - mysql

I'm trying to run this query on MySQL server:
CREATE PROCEDURE forum.eventlog_create(
i_UserID INT,
i_Source VARCHAR(128),
i_Description TEXT,
i_Type INT,
i_UTCTIMESTAMP DATETIME)
MODIFIES SQL DATA
BEGIN
INSERT INTO forum.EventLog
(UserID, Source, Description, ´Type´)
VALUES (i_UserID, i_Source, i_Description, i_Type);
END;
However upon executing it I get the following error:
Error Code: 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 '' at line 12
and I'm unable to fix it. I tried to search for a solution and asked a co-worker but we were unable to find the solution, as last resort I decided to ask it here.
I get error code 1064 but the right syntax near '' is the message and I dont understand what the problem could be. It would be easier if it said which syntax gives the error, I only get the line number.
Thank you for your time

There is one error caused by the escape character around type which should be either backticks or dropped and you should try setting delimiters https://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html
delimiter $$
CREATE PROCEDURE eventlog_create(
i_UserID INT,
i_Source VARCHAR(128),
i_Description TEXT,
i_Type INT,
i_UTCTIMESTAMP DATETIME)
MODIFIES SQL DATA
BEGIN
INSERT INTO forum.EventLog
(UserID, Source, Description, `Type`)
VALUES (i_UserID, i_Source, i_Description, i_Type);
END $$
delimiter ;

Try this
DELIMITER $$
CREATE PROCEDURE forumeventlog_create()
BEGIN
declare i_UserID INT DEFAULT 0;
declare i_Source VARCHAR(128) DEFAULT null;
declare i_Description TEXT DEFAULT null;
declare i_Type INT DEFAULT 0;
declare i_UTCTIMESTAMP DATETIME DEFAULT null ;
INSERT INTO forum.EventLog
(UserID, Source, Description, ´Type´)
VALUES (i_UserID, i_Source, i_Description, i_Type);
END $$
DELIMITER ;
You can call this by
CALL forumeventlog_create()
OR
DELIMITER $$
CREATE PROCEDURE forumeventlog_create(i_UserID INT,i_Source VARCHAR(128),i_Description TEXT,i_Type INT,i_UTCTIMESTAMP DATETIME)
BEGIN
INSERT INTO forum.EventLog
(UserID, Source, Description, ´Type´)
VALUES (i_UserID, i_Source, i_Description, i_Type);
END $$
DELIMITER ;

Related

How do I create a stored procedure in heidisql?

I'm trying to create a stored procedure in heidisql (mysql).
CREATE PROCEDURE SP_FORM20_POST(
P_SESSIONID VARCHAR(256)
)
BEGIN
INSERT INTO tbForm20
( SESSIONID, RegDT)
VALUES
( P_SESSIONID, NOW());
END
This is my query. I'm trying to create this procedure, but occur some error:
Error code is 1064
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near'' at line 8".
However, I don't know wrong syntax. What is wrong?
I want to success in heidisql tool. I don't want other db tool.
Please help me.
The problem in that query is the semicolon, which is the default query delimiter.
In order to change the delimiter in HeidiSQL, add the DELIMITER client command above the CREATE PROCEDURE query:
DELIMITER \\
SELECT 1\\
CREATE PROCEDURE ...\\
DELIMITER ;
HeidiSQL also has a procedure designer, with no need to set the delimiter:
The problem is this. The database reads the ; in your code as an end of the procedure. You probably don't intend it like that :). The DELIMITER command takes care of that by changing ; to something customizable, like $$. Try this:
DELIMITER $$
CREATE PROCEDURE SP_FORM20_POST(
P_SESSIONID VARCHAR(256)
)
BEGIN
INSERT INTO tbForm20
( SESSIONID, RegDT)
VALUES
( P_SESSIONID, NOW());
END$$
DELIMITER ;
Try this one
DELIMITER //
CREATE PROCEDURE SP_FORM20_POST(
P_SESSIONID VARCHAR(256)
)
BEGIN
INSERT INTO tbForm20
( SESSIONID, RegDT)
VALUES
( P_SESSIONID, NOW());
END //
DELIMITER;

Can't figure out stored procedure, error at END

I was hoping you could help me out...
I do know some SQL, but I'm new to mySQL... and there's this simple query that I just can't figure out what's wrong with it:
CREATE PROCEDURE inserttoscrapbookSD
(owner1 VARCHAR(50),
poster1 VARCHAR(50),
Scrap1 VARCHAR(50),
)
BEGIN
INSERT INTO scrapbook (Owner)
VALUES(owner1)
END
I know there are a lot of variables being passed, but just using one variable at the moment because if it works for one, it'll work for all. I tried with and without a semicolon ( ; ) at the end of END and VALUES(owner1) but no luck. It says:
#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 ') BEGIN INSERT INTO scrapbook (Owner) VALUES(owner1) END' at
line 6
Your problem is you need to change the delimiter while you define the stored proc, which allows you to use semicolons ; within your stored proc code without finishing the create command.
Try this:
delimiter //
CREATE PROCEDURE inserttoscrapbookSD (
owner1 VARCHAR(50),
poster1 VARCHAR(50),
Scrap1 VARCHAR(50)
)
BEGIN
INSERT INTO scrapbook (Owner)
VALUES(owner1);
END
//
delimiter ;
Try removing the comma after the last parameter

MySQL Create Procedure Yields Error 1064

Good Morning,
I'm creating the following procedure:
CREATE DEFINER=`root`#`localhost` PROCEDURE `insert_inventory_audit`(
IN `pitem_id` int,
IN `puser_id` int,
IN `pfield_name` varchar(265),
IN `pold_value` mediumtext,
IN `pnew_value` mediumtext
)
BEGIN
INSERT INTO inventory_audit (item_id, user_id, field_name, old_value, new_value)
VALUES (pitem_id, puser_id, pfield_name, pold_value, pnew_value);
END$$
It is being copied to our new server running MySQL 5.5.19 from our old server running MySQL 5.0.45.
When I excecute the above code on the new server, I recieve the following error:
#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 '' at line 11
Does this mean that each entry inside the VALUES parentheses must be surrounded by '' eg. 'pitem_id' ?
You need to have DELIMITER $$ before the create statement.
You didn't change the delimiter from the default ;, so the ; you're using there is actually terminating the procedure, not the query.
DELIMITER $$ <--- add this line
CREATE ....
...
END$$

MySql INSERT Procedure

I am new at MySql and i have a problem with my stored procedure. I am trying to create a new sp for insert like:
CREATE DEFINER = CURRENT_USER PROCEDURE
`NewProc`
(
IN `PCountryId` binary(16),
IN `PCountryName` varchar(50),
IN `PCountryLongitude` float,
IN `PCountryLatitude` float
)
BEGIN
INSERT INTO
country
(
CountryId,
CountryName,
CountryLongitude,
CountryLatitude
)
VALUES
(
PCountryId,
PCountryName,
PCountryLongitude,
PCountryLatitude
)
END;
but when i try to run i get this error:
[Err] 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 'END' at line 25
Could you please help me to figure out this problem?
Thank you
EDIT
When I remove the definer
DEFINER = CURRENT_USER
it works fine.
The default DEFINER value is CURRENT_USER.
MySQL 5.0 Manual 12.1.9.:
If you do not have the SUPER
privilege, the only legal user value
is your own account, either specified
literally or by using CURRENT_USER.
You cannot set the definer to some
other account.
The delimiter inside the stored procedure has to be different from the current delimiter, so you have to write your procedure like this:
(Disclaimer: I didn't test your procedure so there might be other problems that apply)
DELIMITER $$
DROP PROCEDURE IF EXISTS NewProc $$
CREATE DEFINER = CURRENT_USER PROCEDURE
`NewProc`
(
IN `PCountryId` binary(16),
IN `PCountryName` varchar(50),
IN `PCountryLongitude` float,
IN `PCountryLatitude` float
)
BEGIN
INSERT INTO
country
(
CountryId,
CountryName,
CountryLongitude,
CountryLatitude
)
VALUES
(
PCountryId,
PCountryName,
PCountryLongitude,
PCountryLatitude
);
END $$
DELIMITER ;

Mysql stored procedure error

I'm trying to add the following stored procedure to my mysql database:
CREATE PROCEDURE logmsg ( _Username VARCHAR(50), _Message VARCHAR(80) )
BEGIN
INSERT INTO chatlogs (sender, message) VALUES (_Username, _Message);
END;
But its failing the query and returning:
#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 '' at line 3
I've been searching for about 2 hours on google and cannot find any answer at all.
Any help is greatly appreciated!
While I'm not 100% sure because I can't test on a MySQL server at the moment, I think the problem is in the semicolon. On the line with INSERT you basically end the CREATE PROCEDURE statement, which has incorrect syntax this way. You have to set the delimiter to something else (e.g. //), to be able to use the semicolon in the body of the procedure:
delimiter //
CREATE PROCEDURE logmsg ( _Username VARCHAR(50), _Message VARCHAR(80) )
BEGIN
INSERT INTO chatlogs (sender, message) VALUES (_Username, _Message);
END//
delimiter ;