dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePackage Class / DescribeProcedure Method
Name of the procedure.

In This Topic
    DescribeProcedure Method
    In This Topic
    Returns collection of parameters required to execute a procedure.
    Syntax
    'Declaration
     
    Public Function DescribeProcedure( _
       ByVal name As String _
    ) As OracleParameterCollection
    public OracleParameterCollection DescribeProcedure( 
       string name
    )

    Parameters

    name
    Name of the procedure.

    Return Value

    Collection of parameters required to execute a procedure.
    Remarks
    You can use DescribeProcedure method to obtain collection of parameters that can be passed to one of ExecuteProcedure overloads. It is most efficient to to describe a procedure and execute it several times then changing parameters' values only.
    See Also