I'm new and using Delphi XE2 (Update 3) And Installed "dbExpress driver for InterBase & Firebird 3.1.3"
When clicking DevartInterBase on Delphi Data Explorer :

I get below error :

Please help me.
Thank You
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
SQLConnection1.ConnectionName := 'Devart InterBase';
SQLConnection1.DriverName := 'DevartInterBase';
SQLConnection1.GetDriverFunc := 'getSQLDriverInterBase';
SQLConnection1.LibraryName := 'dbexpida40.dll';
SQLConnection1.VendorLib := 'gds32.dll';
SQLConnection1.Params.Values['HostName'] := 'hostname';
SQLConnection1.Params.Values['Database'] := 'database';
SQLConnection1.Params.Values['User_Name'] := 'username';
SQLConnection1.Params.Values['Password'] := 'password';
SQLConnection1.LoginPrompt := False;
SQLConnection1.Open;
end;