Hi All,
The front end application in my project is using ADO.NET and C# code.
We have a requirement were in users will upload a Excel file with 5000 rows and front end has to send it in a COLLECTION to Oracle Stored Procedure.
Currently they are passing row by row to insert into a table.
I am from Oracle background and I know how to handle TYPE Array as INPUT in Procedure and insert into table using BULK COLLECT.
I need help on how can ADO.NET or C# code be used to pass the data from Excel as a TYPE ARRAY input to Stored Procedures.
Please help.