type g_dsc_Rec_T is record(
id number,
dsc varchar2(4000 char)
);
i got:
Error parsing line 7, column 36
Last consumed token: "4000"
net.sourceforge.pldoc.parser.ParseException: Encountered "char" at line 7, column 36.
Was expecting one of:
")" ...
"," ...
Friends, please, fix this bug ! Thank you !
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The same is true for the alternative CHAR
The same with PL/SQL type - on code
type g_dsc_Rec_T is record(
id number,
dsc varchar2(4000 char)
);
i got:
Error parsing line 7, column 36
Last consumed token: "4000"
net.sourceforge.pldoc.parser.ParseException: Encountered "char" at line 7, column 36.
Was expecting one of:
")" ...
"," ...
Friends, please, fix this bug ! Thank you !