Data.Win.ADODB.TADOBlobStream.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TADOBlobStream();

Properties

Type Visibility Source Unit Parent
destructor public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOBlobStream

Description

Destroys an instance of TADOBlobStream.

Do not call Destroy directly in an application. Instead, call Free. Free checks that the TADOBlobStream reference is not nil before calling Destroy.

Destroy a TADOBlobStream object when it is no longer needed to store or write data. Destroy calls Clear to free the memory buffer before calling the inherited destructor.

Destroy performs the following tasks:

Sets the field's data.

Changes the field object's Modified property to true.

Triggers a field change event in the field's dataset object.

Calls the inherited destructor.

See Also