FireDAC.Comp.DataSet.TFDBlobStream.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: destructor
Visibility: public
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDBlobStream

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TFDBlobStream();

Description

Destroys an instance of TMemoryStream.

FireDAC.Comp.DataSet.TFDBlobStream.Destroy inherits from System.Classes.TMemoryStream.Destroy. All content below this line refers to System.Classes.TMemoryStream.Destroy.

Destroys an instance of TMemoryStream.

Do not call Destroy directly in an application. Instead, call Free. Free verifies that the TMemoryStream reference is not nil, and only then calls Destroy.

Destroy a TMemoryStream 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.

See Also