WRITEAPPEND¶
The WRITEAPPEND
procedure provides the capability to add data to the end
of a large object.
WRITEAPPEND(<lob_loc> IN OUT { BLOB | CLOB },
<amount> BINARY_INTEGER, <buffer> { RAW | VARCHAR2 })
Parameters
lob_loc
Large object locator of the large object to which data is to be appended.
amount
Number of bytes/characters from
buffer
to be appended the large object.
buffer
Data to be appended to the large object. If
lob_loc
is aBLOB
, thenbuffer
must beRAW
. Iflob_loc
is aCLOB
, thenbuffer
must beVARCHAR2
.