Live ORACLE

if you are Oracle Developer ,than this Blog most likely will make you happy.

About my Blog

This Blog particularized for Oracle Developers ... you will see interesting Codes for SQL , PL/SQL as well as new ideas for Developer Suite and Client Tools that will help you in your professional life ... and I hope I reach for your satisfaction.

About Me

I'm Hany Freedom , 25 years old , I live in EL-Minia City in Egypt , I'm Moderator at ArabOUG.org the best Arabic Forum for ORACLE on the Net. if you interested to know more about me .... just Click Here.

Resolving PL/SQL Functions With Inheritance



CREATE OR REPLACE TYPE super_t AS OBJECT

(n NUMBER

) NOT FINAL;

/


CREATE OR REPLACE TYPE sub_t UNDER super_t

(n2 NUMBER

) NOT FINAL;

/


CREATE OR REPLACE TYPE final_t UNDER sub_t

(n3 NUMBER

);

/


CREATE OR REPLACE PACKAGE p

IS

FUNCTION func(arg SUPER_T) RETURN NUMBER;



FUNCTION func(arg SUB_T) RETURN NUMBER;

END;

/


CREATE OR REPLACE PACKAGE BODY p

IS

FUNCTION Func

(arg SUPER_T)

RETURN NUMBER

IS

BEGIN

RETURN 1;

END;



FUNCTION Func

(arg SUB_T)

RETURN NUMBER

IS

BEGIN

RETURN 2;

END;

END;

/


DECLARE

v FINAL_T := Final_t(1,2,3);

BEGIN

dbms_output.Put_line(p.Func(v)); -- prints 2



END;

/





OUTPUT :-




Share/Save/Bookmark

0 comments:

Post a Comment



Newer Posts Older Posts Home Page
 
http://www.dpriver.com/images/sqlpp-banner-2.png

Thanks for reading my Blog ... you Visitor Number :-