Bde.DBTables.TSessionList.Sessions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Sessions[Index: Integer]: TSession read GetSession; default;

C++

__property TSession* Sessions[int Index] = {read=GetSession/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TSessionList

Description

Lists all active session components in the session list.

Use Sessions to access available session components. Index specifies the session to access. Index must be in the range of zero to the current value of the Count property minus one, or an EListError exception is raised describing the out of bounds condition.

For example, an application might iterate through all available sessions in the list to perform a global action on them.

See Also