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 _
)
 

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.
See Also