Hi,
The SQL script generated by MySQL generator does not work. I am using MySQL workbench 5.2.36 CE, Installed MySQl CE 5.5.
1. It generates double quote, which MySQL throws error at.
See sample generated code below:
a. Errors at DROP PPROCEDURE, Error 1064
=> I remove DROP PROCE.. line, then
b. Errors at CREATE PROCE..,Error 1064, then I remove the double quote, then errors goes to
c. DECLARE "model...
i removed all the double quotes in the generated quote then it works.
Is there a setting so that the double quote is not generated.
I also have the postgreSQL generator installed. That works with PostgresSQL
Hope you can reply.
Thank you,
Ganesan
Sample:
DELIMITER GO
SET SESSION sql_mode = 'ANSI';
GO -- 'end-of-command
DROP PROCEDURE IF EXISTS "sp_install_rise_model";
GO -- 'end-of-command
CREATE PROCEDURE "sp_install_rise_model"()
BEGIN
DECLARE "model_id" INT;
DECLARE "log_id" INT;
DECLARE "completed_timestamp" TIMESTAMP;
DECLARE "start_timestamp" TIMESTA