Can an Oracle stored procedure that has a nested table parameter be called from ODP.NET?
问题 I've got a stored procedure that has a couple parameters that are nested tables. CREATE TYPE FOO_ARRAY AS TABLE OF NUMBER; CREATE TYPE BAR_ARRAY AS TABLE OF INTEGER; CREATE PROCEDURE Blah( iFoos IN FOO_ARRAY, iBars IN BAR_ARRAY, oResults OUT SOMECURSORTYPE ) AS BEGIN OPEN oResults FOR SELECT * FROM SomeTable T JOIN TABLE(iFoos) foos ON foos.column_value = T.foo JOIN TABLE(iBars) bars ON bars.column_value = T.bar; END Using ODP.NET (Oracle.DataAccess.dll), is there a way to call this stored