I have an Oracle SPROC which takes as one of its IN parameters a table array
(e.g. type charArray is table of varchar2(255)...)

How can I call that SPROC and pass it the table array from ADO.NET?

Thanks.