OracleClob(OracleConnection, bool, bool)
This constructor creates an instance of the OracleClob class that is bound to a temporary CLOB, with an OracleConnection object, a boolean value for caching, and a boolean value for NCLOB.
Declaration
// C# public OracleClob(OracleConnection con, bool bCaching, bool bNCLOB);
Parameters
-
conThe
OracleConnectionobject connection. -
bCachingA flag that indicates whether or not server-side caching is enabled.
-
bNCLOBA flag that is set to
trueif the instance is aNCLOBorfalseif it is aCLOB.
Exceptions
InvalidOperationException - The OracleConnection is not open or has been closed during the lifetime of the object.
Remarks
The connection must be opened explicitly by the application. OracleClob does not open the connection implicitly. The temporary CLOB or NCLOB uses the provided connection to store CLOB data.