Jump to content
Sign in to follow this  
Stano

Classic problem: "xnet://Global \Local\FIREBIRD"

Recommended Posts

Project JasotSVB.exe raised exception class EIBNativeException with message '[FireDAC][Phys][FB]Unable to complete network request to host "xnet://Global\Local\FIREBIRD".'.

The internet didn't help me.
The paths are right. I shut down the server. FB ver 3.0.7. My program settings:

  dtmdBasic.fdfbdrlnkFoc.VendorHome := '';
  dtmdBasic.fdfbdrlnkFoc.VendorLib := '';
  dtmdBasic.fdfbdrlnkFoc.VendorLib := VendorDir;
  dtmdBasic.fdfbdrlnkFoc.Embedded := FCertificate.IsEmbedded;  //  True

  Connection := dtmdBasic.conFB;
  Connection.Connected := False;
  Connection.LoginPrompt := False;
  Connection.Params.Add('CharacterSet = csWin1250');
  Connection.Params.Database := FBasicDir.UserDataDir + FFileName;
  Connection.Params.DriverID := 'FB';
  Connection.Params.Database := 'Password = masterkey';
  Connection.Params.Add('Port = 3050');
  Connection.Params.Add('Protocol = ipLocal');
  Connection.Params.UserName := 'SYSDBA';

 

I'm putting it here because FireDAC.

Edited by Stano

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×