Skip to Main Content

SQL & PL/SQL

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!

using packege type in object function arguments

337032Dec 14 2004 — edited Dec 14 2004
here is simple example
-- package type
create or replace package dummy_pkg is
type x_type is table of varchar2(20) index by varchar2(30)end dummy_pkg;

-- object definition
create or replace type object as object
(
member procedure x(v dummy_pkg.x_type)
)

create or replace type body object is

member procedure x(v dummy_pkg.x_type) is
begin
null;
end;
end;

Why is it not possible to create object which refers in procedure or function to package
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 11 2005
Added on Dec 14 2004
2 comments
207 views