Subject Embedded FireBird and ZeosLib
Author Uwe Oeder
I manage to make a connection to firebird , with ZEOSDBO , when it is
running as a service. I can even do a query on a table. However when I stop
the service. Load the .DLL (fbembed.dll) and try to connect to the firebird
server. Ad it is supposed to start when I connect. I get an error msg from
one of the ZeosCpmponents that says "Error unable to complete network
request to host "192.168.0.107".. Error Code: -902". I am assuming that
this is because it says in the readme file :

"Only true local access is allowed. The embedded server doesn't have any
support for remote protocols, so even access via "localhost" won't work."

Now how do make the my connection "true local" ??? Does anybody have a clue
what could be going wrong.

Must I load or initialise the .DLL differently ???

LibHandle := LoadLibrary('FBEMBED.DLL') ;
If (LibHandle = 0) Then
Begin
ShowMessage('The library was not loaded.') ;
End ;
ZConnection.Connect ;