I'm trying to install Firebird client 3.0.4.33054 on a Windows client without using the installer.
Version on the server is the following:
C:\Program Files\Firebird\Firebird_3_0>gfix -z
gfix version WI-V3.0.4.33054 Firebird 3.0
I found this page:
Each remote client machine needs to have the client library – libfbclient.so on Posix clients, fbclient.dll on Windows clients – that matches the release version of the Firebird server.
Firebird can install symlinks or copies named after the 1.0 libs (with the “old” InterBase names), to maintain compatibility with third-party products which need these files.
Some extra pieces are also needed for the client-only install.
My client application uses FibPlus Library components, so I've copied (from a working client) these two files:
- fbclient.dll (3.0.4.33054)
- gds32.dll (6.3.4.33054)
I've tried placing the two files:
- In the client application folder
- In C:\Windows\SysWOW64
- In C:\Windows\System32
When the client application tries to connect to the database, it raises the following exception message:
Can't load library gds32.dll
What am I missing? (Maybe that "Some extra pieces" mentioned by the documentation?)