I am developing a .NET interface that interacts with an Oracle database. I figured out how to get a list of stored procedures to execute, but I don't know how to get a list of parameters related to a stored procedure. I want to show a list of all parameters that are input and output parameters of a stored procedure.
I tried using DBA_SOURCE, DBA_PROCEDURES, ALL_DEPENDENCIES, but I did not see anything that shows the parameters related to the specified stored procedure.
Any ideas?
source
share