AdoField:AppendChunk()

<< Click to Display Table of Contents >>

Navigation:  Ado Classes > AdoField Class >

AdoField:AppendChunk()

Previous pageReturn to chapter overviewNext page

Purpose

Write long binary data into a field

 

Prototype

METHOD AppendChunk ( uData AS USUAL )  AS VOID PASCAL CLASS AdoField

 

Argument(s)

uData        The data to append to the field

 

 

Description

The first AppendChunk call on a Field object writes data to the field, overwriting any existing data. Subsequent AppendChunk calls add to existing data. If you are appending data to one field and then you set or read the value of another field in the current record, ADO assumes that you are done appending data to the first field. If you call the AppendChunk method on the first field again, ADO interprets the call as a new AppendChunk operation and overwrites the existing data. Accessing fields in other Recordset objects that are not clones of the first Recordset object will not disrupt AppendChunk operations.

 

See Also

AdoField, AdoField:GetChunk()