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
bufferto be appended the large object.
buffer
Data to be appended to the large object. If
lob_locis aBLOB, thenbuffermust beRAW. Iflob_locis aCLOB, thenbuffermust beVARCHAR2.