dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / OracleLob Constructor / OracleLob Constructor(OracleConnection,OracleDbType)
The OracleConnection object.
One of the OracleDbType values. May be OracleDbType.Blob, OracleDbType.BFile, OracleDbType.Clob, or OracleDbType.NClob.

In This Topic
    OracleLob Constructor(OracleConnection,OracleDbType)
    In This Topic
    Initializes a new instance of the OracleLob class with the specified OracleConnection and Oracle LOB type.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal connection As OracleConnection, _
       ByVal lobType As OracleDbType _
    )
    public OracleLob( 
       OracleConnection connection,
       OracleDbType lobType
    )

    Parameters

    connection
    The OracleConnection object.
    lobType
    One of the OracleDbType values. May be OracleDbType.Blob, OracleDbType.BFile, OracleDbType.Clob, or OracleDbType.NClob.
    Remarks
    The connection must be opened explicitly by the application. OracleLob object does not open the connection implicitly.
    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