Syntax
| parameterobject.AppendChunk(Data)
| ||||
---|---|---|---|---|---|
Description
| Use to append a large amount (i.e., a large chunk) of text or binary data to a Parameter object.
The AppendChunk method is used to append binary or text data to a Parameter object. To use the AppendChunk method, the Attributes property of the specified Parameter object must be set to adParamLong.
The first time that you call AppendChunk, the data is not appended, but rather, it overwrites any existing data in the Parameter object. The second time that you call AppendChunk, the data is appended to the existing data. All subsequent calls will also append the data.
You can use this method to pass large amounts of data into a Parameter object in reasonable sized chunks.
| ||||
See Also
| |||||
Example
| objCommand.Parameters(strName).AppendChunk varChunk |