Oracle
 sql >> Base de données >  >> RDS >> Oracle

Appel d'une procédure Oracle avec un paramètre de type collection PL/SQL via .NET

L'appel de procédure via ODP.NET ne prend en charge que les tableaux associatifs, c'est-à-dire avec INDEX BY ... , les tableaux imbriqués ne sont pas pris en charge.

Une solution consiste à convertir dans votre procédure Orale :

CREATE OR REPLACE PACKAGE test_package_gkeu IS

    TYPE test_type IS TABLE OF NUMBER;    
    TYPE test_type_associative IS TABLE OF NUMBER INDEX BY INTEGER;

PROCEDURE TEST1 (pvTest IN test_type_associative ) IS

v test_type := test_type();
BEGIN
   v.Extend(pvTest.COUNT);
   for i in pvTest.First..pvTest.Last loop
       v(i) := pvTest(i)
   end loop;

select *
into ...
from receiver r
where r.receiverid MEMBER OF (v);

END;

Pour les instructions DML, considérez également ceci :

FORALL i IN INDICES OF pvTest 
    INSERT INTO MY_TABLE (COL_A)
    VALUES (pvTest(i));

or 

FORALL i IN INDICES OF pvTest 
    DELETE FROM receiver 
    WHERE receiverid  = pvTest(i);