Skip to Main Content

SQL Developer for VS Code

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Extend() syntax error

I get syntax error

declare
type t1 is table of number;
type t2 is record(id number, coll t1);
type t3 is table of t2;
v3 t3;
begin
v3 := t3();
v3.extend();
v3(1).coll := t1();
v3(1).coll.extend();--syntax error here
end;
/

I have some large packages and the error causes that outline is not working. It makes difficult for me to navigate throught code.

Comments
Post Details
Added on Feb 7 2025
1 comment
79 views