Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> PL/SQL Arrays

PL/SQL Arrays

From: Jeremy <newspostings_at_hazelweb.co.uk>
Date: Wed, 19 Nov 2003 18:21:31 -0000
Message-ID: <MPG.1a25c4e5593738ba989952@news.individual.net>

Say you have the following:

typecreate or replace package my_util
is

type numarray   is table of number         index by binary_integer;
procedure	wrap
		   (p_numbers		in 	numarray);

end my_util;

You cannot say "numarray default null" so you are obliged to pass at least some parameters to procedure "wrap" when you call it. I am sure there is a way around this - how should I define things so that I don't have to always pass some value?

Hope you can help - sorry I feel this is probably a very basic question.

-- 

jeremy
			
Received on Wed Nov 19 2003 - 12:21:31 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US