Bug in OracleScript

Dmitry

Member
Hello!!! There is some bug with OracleScript. It parses very wrongly. For example:

declare
s string(4000);
begin
s:='

declare
s string(4000);
begin
s:=''
QQ
'';
end;
/

';
end;
/

well, the OracleScript break it on two part, but is NOT GOOD!!! How takes it in ???
 
The / at the start of the line inside the multi-line string confuses the interpreter. We will fix this bug, and you can work around the problem by using an expression like | | '/' | | instead.

------------------
Marco Kalter
Allround Automations
 
Back
Top