dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleParameter Class / Item Property
The zero-based index.

In This Topic
    Item Property (OracleParameter)
    In This Topic
    Gets the value of the element at the specified index for DML array or PL/SQL tables.
    Syntax
    'Declaration
     
    Public Default Property Item( _
       ByVal index As Integer _
    ) As Object
    public object this[ 
       int index
    ]; {get; set;}

    Parameters

    index
    The zero-based index.

    Property Value

    A value of the element of DML array or PL/SQL tables.
    Remarks
    By default dotConnect for Oracle reserves maximum memory that the DML array might require. To prevent redundant memory consumption it is recommended to set Devart.Common.DbParameter.Size to size of biggest array element.
    See Also