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.

Incompatibility Between Package and Local Collection Types


CREATE PACKAGE PKG

AS

TYPE NUMLIST IS TABLE OF NUMBER;



PROCEDURE PRINT_NUMLIST(NUMS NUMLIST);

END PKG;

/


CREATE PACKAGE BODY PKG

AS

PROCEDURE PRINT_NUMLIST

(NUMS NUMLIST)

IS

BEGIN

FOR I IN NUMS.FIRST.. NUMS.LAST LOOP

DBMS_OUTPUT.PUT_LINE(NUMS(I));

END LOOP;

END;

END PKG;

/


DECLARE

TYPE NUMLIST IS TABLE OF NUMBER;

N1 PKG.NUMLIST := PKG.NUMLIST(2,4); -- type from the package.

N2 NUMLIST := NUMLIST(6,8); -- local type.



BEGIN

PKG.PRINT_NUMLIST(N1); -- type from pkg is legal



-- The packaged procedure cannot accept a value of the local type (n2)

-- pkg.print_numlist(n2); -- Causes a compilation error.

END;

/



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 :-