I have created an update tool which will update a Firebird Server database to an SQL Server database, this updating is done using Firebird database backup file and updated to an SQL Server database. I have a Firebird backup file with data up tp 2016, but the client has latest data up to 2018. I want to access his backup file, and for this I have created a Firebird connection string
string ConnectionString = "User ID=sysdba;Password=masterkey;Database=192.168.1.19:50800:D:\\Company Data\\CLINEDB.CMP;DataSource=192.168.1.19;Charset=NONE;Server Type=1;";
I get this error:
Unable to complete network request to host "50800". failed to establish a connection
If I use this connection string
string ConnectionString = "User ID=sysdba;Password=masterkey;Database=192.168.1.19/50800:D:\\Company Data\\CLINEDB.CMP;;DataSource=192.168.1.19;Charset=NONE;Server Type=1;";
Unable to complete network request to host "D". failed to locate host machine
Charset=NONEis potentially dangerous setting... TryDataSource=192.168.1.19:50800orDataSource=192.168.1.19/5080and totally remove the server part fromDatabase=. It seems you make that remote FB server to act as proxy and try to connect to the next server on your behalf, "server chaining"