The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
OracleLob::Null Field
.NET Framework (current version)
Represents a null OracleLob object.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
Field Value
Type: System.Data.OracleClient::OracleLob^You can construct an OracleLob that is NULL using this format:
OracleLob myLob = OracleLOB.Null;
This technique is used primarily to test whether a LOB returned from the server is NULL, as this example illustrates:
If(myLob == OracleLob.Null)
A NULL LOB behaves similarly to a zero byte LOB in that Read succeeds and always returns zero bytes.
.NET Framework
Available since 1.1
Available since 1.1
Show: