Page 1 of 1
What's new in IBDAC 3.00?
Posted: Mon 23 Mar 2009 11:46
by Roaster2
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?
Posted: Tue 24 Mar 2009 07:41
by Plash
IBDAC 3.0 contains administrative components. Yes, you can receive IBDAC 3.0 for free.
Posted: Tue 24 Mar 2009 11:42
by Roaster2
Perfect! Thanks for the good news and glad to hear to get it free of charge!
Posted: Wed 01 Apr 2009 12:13
by uko
I have installed the beta but do not get a glue how to work with the new service components: will they work with Firebird 2.1 or is Interbase 6 enforced? And can you provide some small examples how to use them? (for example: how to get all users from current server instance)
best regards,
Ulrich
Posted: Thu 02 Apr 2009 07:36
by Plash
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;
Posted: Thu 02 Apr 2009 11:14
by uko
Thanks! I missed to call Attach, that's why I got no result on my own trials. But now it works fine.
best regards,
Ulrich