Append(OracleBlob)
This instance method appends the BLOB
data referenced by the provided OracleBlob
object to the current OracleBlob
instance.
Declaration
// C#
public void Append(OracleBlob obj);
Parameters
-
obj
An object of
OracleBlob
.
Exceptions
ObjectDisposedException
- The object is already disposed.
InvalidOperationException
- The parameter has a different connection than the object, OracleConnection
is not opened, or OracleConnection
has been reopened.
Remarks
No character set conversions are made.
The provided object and the current instance must be using the same connection; that is, the same OracleConnection
object.