Skip Headers

Oracle® Objects for OLE Developer's Guide
10g Release 1 (10.1)

Part Number B10118-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Erase (OraLOB) Method

Applies To

OraBLOB, OraCLOB

Description

Erases the specified portion of the LOB value of this object starting at the specified offset.

Arguments
Description
[in] amount
An Integer specifying the maximum number of characters or bytes to be erased
[in] [optional]
offset An Integer specifying absolute offset of the LOB value from which to start erasing. Default value is 1
Usage

OraBlob.Erase amount, offset

OraClob.Erase amount, offset

Remarks

Either a row-level lock or object-level lock should be obtained before calling this method. The actual number of characters/bytes and the requested number of characters/bytes will differ if the end of the LOB value is reached before erasing the requested number of characters/bytes. For BLOBs, erasing means that zero-byte fillers overwrite the existing LOB value. For CLOBs, erasing means that spaces overwrite the existing LOB value.