I am working on some existing project and I am trying to make it go from many firebird databases on the client end to one server based database.
Unfortunately I am having some trouble with the connection string.
Is it possible to connect to a .fdb file on a remote server?
Currently the code is as follows:
var builder = new FbConnectionStringBuilder
{
Database = @"C:\test.db",
ServerType = FbServerType.Embedded,
Pooling = isPooled
};
I have read some examples about how it can be done like the below but its not working:
FbConnectionStringBuilder(@"Database=192.168.1.235:C:\share\test.fdb;User ID=sysdba;Password=masterkey;")
It still connects to just the local directory C:\share\test.fdb. As that is not my ip address. Any help?