Icon Write Method

function Write(const Buffer; Count: Integer): Integer

Usage

Use Write to write Count bytes to the BLOB field, starting at the current position. The Write method for TDBISAMBlobStream always writes the entire Count bytes, as a BLOB field does not necessarily include a termination character. Thus, Write is equivalent to the WriteBuffer method.

Write ignores the Transliterate property of the field since DBISAM always writes data using the ANSI character set.

All the other data-writing methods of a TDBISAMBlobStream object (WriteBuffer, WriteComponent) call Write to do their actual writing.

Information Do not call Write when the TDBISAMBlobStream object was created in bmRead mode.
Image