Reputation: 1097
I know that SQL Server has linked server that allow it to connect to other database and execute query. Now I am using firebird. I wonder if firebird has its "linked server" to access other databases. Thanks!
Upvotes: 1
Views: 704
Reputation: 108941
Firebird doesn't have a linked server feature. There is a limited method for accessing other Firebird databases (either remote or locally) using EXECUTE STATEMENT
, however this only supports Firebird database, and you need to provide the data source information on each invocation.
Upvotes: 2