Compte tenu de ceci:
DECLARE
TYPE T_ARRAY IS TABLE OF VARCHAR2(2000) INDEX BY BINARY_INTEGER;
MY_ARRAY T_ARRAY;
V_COUNT INTEGER;
Je voudrais faire:
BEGIN
-- ... some code filling the MY_ARRAY array
-- obviously COUNT_ELEMENTS() does not exists, this is what I'm looking for :-)
V_COUNT := COUNT_ELEMENTS(MY_ARRAY);
DBMS_OUTPUT.PUT_LINE('My array containts ' || V_COUNT || ' elements.');
END;
Y a-t-il quelque chose de mieux que de créer une procédure faisant une boucle de base incrémentant un compteur? Peut-être qu'une fonction native PL / SQL fait déjà cela COUNT_ELEMENTS()
?