dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleArray Class / OracleArray Constructor / OracleArray Constructor(String,OracleConnection,IEnumerable)
Name of the object type at the Oracle server.
An OracleConnection used to describe object type at the Oracle server. This should be the array type, not the type of objects of which the array consists.
A set of array item values.

In This Topic
    OracleArray Constructor(String,OracleConnection,IEnumerable)
    In This Topic
    Initializes a new instance of the OracleArray class of the specified type with the specified OracleConnection.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal typeName As String, _
       ByVal connection As OracleConnection, _
       ByVal source As IEnumerable _
    )
    public OracleArray( 
       string typeName,
       OracleConnection connection,
       IEnumerable source
    )

    Parameters

    typeName
    Name of the object type at the Oracle server.
    connection
    An OracleConnection used to describe object type at the Oracle server. This should be the array type, not the type of objects of which the array consists.
    source
    A set of array item values.
    Remarks
    Use this constructor to create an OracleArray and pass it as a parameter by assigning to Value at the time of initialization.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also