You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks very much for your API documentation, was trying to test this, on steps-3 when trying to install this procedure on MYSQL which is Maria-DB, I see there is syntax error, I am not a DB expert, hence struggling on how to find and fix the syntax, is this something you can help
I tried to load your NAS procedure-nasAdd.sql which is below,
USE radius;
DELIMITER $$
USE radius$$
CREATE PROCEDURE nasAdd (
IN _nasname VARCHAR(128),
IN _shortname VARCHAR(32),
IN _type VARCHAR(30),
IN _secret VARCHAR(60),
IN _description VARCHAR(200)
)
BEGIN
INSERT INTO nas (nasname, shortname, type, secret, description)
VALUES (_nasname, _shortname, _type, _secret, _description);
when I try to create a a stored procedure using mySql work bench and try to just paste your details, I get syntax error as shown below or attached
please can you help,
I have same issue even when I load the user add or edit SQL as well
Thanks
Kiran
The text was updated successfully, but these errors were encountered:
kraman2681
changed the title
Install SQL Procedures to your radius database (Synax error when trying to load the procedure to MariaDB )
Install SQL Procedures to your radius database (Syntax error when trying to load the procedure to MariaDB )
Nov 15, 2024
Hi Joze,
thanks very much for your API documentation, was trying to test this, on steps-3 when trying to install this procedure on MYSQL which is Maria-DB, I see there is syntax error, I am not a DB expert, hence struggling on how to find and fix the syntax, is this something you can help
I tried to load your NAS procedure-nasAdd.sql which is below,
USE radius;
DELIMITER $$
USE
radius
$$CREATE PROCEDURE
nasAdd
(IN _nasname VARCHAR(128),
IN _shortname VARCHAR(32),
IN _type VARCHAR(30),
IN _secret VARCHAR(60),
IN _description VARCHAR(200)
)
BEGIN
INSERT INTO nas (nasname, shortname, type, secret, description)
VALUES (_nasname, _shortname, _type, _secret, _description);
when I try to create a a stored procedure using mySql work bench and try to just paste your details, I get syntax error as shown below or attached
please can you help,
I have same issue even when I load the user add or edit SQL as well
Thanks
Kiran
The text was updated successfully, but these errors were encountered: