FireDAC.Phys.IBBase.TFDIBSecurity.Users

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Users: TFDDatSTable read FUsers;

C++

__property Firedac::Dats::TFDDatSTable* Users = {read=FUsers};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Phys.IBBase.pas
FireDAC.Phys.IBBase.hpp
FireDAC.Phys.IBBase TFDIBSecurity

Description

The reference to the list of all users.

Use the Users property to read the list of all existing users. The property is filled after calling the DisplayUsers method.

Example

FDIBSecurity.DisplayUsers;
FDMemTable1.AttachTable(FDIBSecurity.Users, nil);
FDMemTable1.Open;

See Also