RE: Passing array as input to procedure from sqlplus-HELP

2003-06-17 Thread Jamadagni, Rajendra
Title: RE: Passing array as input to procedure from sqlplus-HELP exec testproc(pid_varray(1,2,3,4,5)); Raj Rajendra dot Jamadagni at nospamespn dot com All Views expressed in this email are strictly personal

Re: Passing array as input to procedure from sqlplus-HELP

2003-06-17 Thread Paul Baumgartel
You will have to write an anonymous block that declares the array variable, and passes that array to your procedure under test. --- Basavaraja, Ravindra [EMAIL PROTECTED] wrote: Hi All, I want to test a procedure that accepts an array as input.I want to test this script from SQL*PLUS.How