I had the following code:
DECLARE
l NUMBER := 1;
k VARCHAR2(1) : 'R';
BEGIN
IF l = 1 THEN
IF k IN ('Y', 'C', 'S') THEN
Dbms_Output.Put_Line('This is in');
ELSE
Dbms_Output.Put_Line('This is not in');
END IF;
END IF;
END;
Look the line "k varchar2(1) : 'R';" I don't have the equal sign "=". It is an error but if I try to use the beautifier I got a message "The beautifier caused an error. Please send the source file to support@allroundautomations.com"
If I correct the sentence beautifier works fine.
Regards,
DECLARE
l NUMBER := 1;
k VARCHAR2(1) : 'R';
BEGIN
IF l = 1 THEN
IF k IN ('Y', 'C', 'S') THEN
Dbms_Output.Put_Line('This is in');
ELSE
Dbms_Output.Put_Line('This is not in');
END IF;
END IF;
END;
Look the line "k varchar2(1) : 'R';" I don't have the equal sign "=". It is an error but if I try to use the beautifier I got a message "The beautifier caused an error. Please send the source file to support@allroundautomations.com"
If I correct the sentence beautifier works fine.
Regards,