The ArrayDesciptor and ARRAY classes (as well as StructDescriptor and STRUCT) belong to Oracle TYPES - that is, objects like something are created ...
create type my_obj as object( id varchar2(x), etc );
If you have access to java, you should see where the ArrayDescriptor is constructed and get the name of the database type from it.
You can use these types of oracles as parameters for functions and procedures.
source
share