How to resolve Firebird “unavailable database” error on a remote database?
I have a Firebird 2.0 database running on a remote Windows XP PC. Using the ADO.net connection provider, I configure the connection as follows: Dim x As New FirebirdSql.Data.FirebirdClient.FbConnectionStringBuilder x.Database = "[hostname]:FileShare:/db/REMOTE_SVR.FDB" x.UserID = "SYSDBA" x.Password = "masterkey" Dim y As New FirebirdSql.Data.FirebirdClient.FbConnection(x.ConnectionString) y.Open() Attempting to open the connection raises an FbException , with the message "unavailable database". Downloading the ODBC drivers and attempting to connect with those settings produces the same error