dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / OracleLob Constructor / OracleLob Constructor(OracleConnection,OracleDbType,Boolean)
The OracleConnection object.
One of the OracleDbType values. May be OracleDbType.Blob, OracleDbType.BFile, OracleDbType.Clob, or OracleDbType.NClob.
true if the OracleLob should be read into the cache; otherwise, false.

In This Topic
    OracleLob Constructor(OracleConnection,OracleDbType,Boolean)
    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, _
       ByVal isCaching As Boolean _
    )
    public OracleLob( 
       OracleConnection connection,
       OracleDbType lobType,
       bool isCaching
    )

    Parameters

    connection
    The OracleConnection object.
    lobType
    One of the OracleDbType values. May be OracleDbType.Blob, OracleDbType.BFile, OracleDbType.Clob, or OracleDbType.NClob.
    isCaching
    true if the OracleLob should be read into the cache; otherwise, false.
    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