Hi everyone, is it possible to call an oracle storage procedure with a record type as IN parameter.
In Oracle I have a record definition:
TYPE R_InData_tab IS RECORD ( ... ); TYPE InData_tab IS TABLE OF R_InData_tab INDEX BY BINARY_INTEGER;
Now I want to set this record type as parameter:
PROCEDURE myProcedure (inRecord IN myPackage.InData_tab);
And call this procedure from my C# Code. Does anyone has an idea?
Thx