IsEqual
This instance method compares the LOB data referenced by the two OracleBlob
s.
Declaration
// C#
public bool IsEqual(OracleBlob obj);
Parameters
-
obj
An
OracleBlob
object.
Return Value
If the current OracleBlob
and the provided OracleBlob
refer to the same LOB, returns true
. Returns false
otherwise.
Exceptions
ObjectDisposedException
- The object is already disposed.
InvalidOperationException
- The OracleConnection
is not open or has been closed during the lifetime of the object.
Remarks
Note that this method can return true
even if the two OracleBlob
objects return false
for == or Equals()
because two different OracleBlob
instances can refer to the same LOB.
The provided object and the current instance must be using the same connection, that is, the same OracleConnection
object.