Data.DB.TCustomConnection.StreamedConnected

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TCustomConnection

Delphi

property StreamedConnected: Boolean read FStreamedConnected write FStreamedConnected;

C++

__property bool StreamedConnected = {read=FStreamedConnected, write=FStreamedConnected, nodefault};

Description

Indicates whether the Connected property was true when the connection component was loaded from a stream.

StreamedConnected is used internally to ensure that the connection component does not open a connection until all objects on the form or data module are loaded into memory. This property is set instead of the Connected property when loading the connection component. In the Loaded method, after all objects in the form or data module have been loaded into memory, the value of StreamedConnected is used to set the Connected property.

See Also