Hi,
OK, the history overview of IbDac tells about exactly two new component for IbDac 3.0, but what other changes have been done in this release which justify a version 3?
Will there be some administrative components, too?
Btw, will existing customers (I registered 4 months ago IbDac 2.70) receive version 3 as a free update?
What's new in IBDAC 3.00?
Code: Select all
var
i: integer;
UserInfo: TIBCUserInfo;
begin
IBCSecurityService.Username := 'sysdba';
IBCSecurityService.Password := 'masterkey';
IBCSecurityService.Server := 'localhost';
IBCSecurityService.Attach;
IBCSecurityService.DisplayUsers;
for i := 0 to IBCSecurityService.UserInfosCount - 1 do begin
UserInfo := IBCSecurityService.UserInfos[i];
Memo1.Lines.Add(UserInfo.UserName);
end;
end;