What's new in IBDAC 3.00?

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Roaster2
Posts: 51
Joined: Mon 13 Oct 2008 19:29

What's new in IBDAC 3.00?

Post by Roaster2 » Mon 23 Mar 2009 11:46

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?

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Tue 24 Mar 2009 07:41

IBDAC 3.0 contains administrative components. Yes, you can receive IBDAC 3.0 for free.

Roaster2
Posts: 51
Joined: Mon 13 Oct 2008 19:29

Post by Roaster2 » Tue 24 Mar 2009 11:42

Perfect! Thanks for the good news and glad to hear to get it free of charge!

uko
Posts: 14
Joined: Tue 16 Sep 2008 12:27

Post by uko » Wed 01 Apr 2009 12:13

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

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Thu 02 Apr 2009 07:36

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;

uko
Posts: 14
Joined: Tue 16 Sep 2008 12:27

Post by uko » Thu 02 Apr 2009 11:14

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

Post Reply