-
-
Notifications
You must be signed in to change notification settings - Fork 11
Description
Hi, first of all thank you for your work on FirebirdSQL.
I have a problem requesting information from a FirebirdSQL Server.
I am connected to a newly migrated server from FB v2.5 to 5.0.3, thus the switch fromfdb
to firebird-driver
.
In my previous code, I could use fdb
’s server.get_attached_database_names()
to get all the attached databases. Now, after updating the fbclient.dll
to version 5.0.3 and switching to firebird-driver
, I wanted to use the server.info.attached_databases
. But this leads to the mentioned error: Invalid response format
.
It does not seem to be a library configuration error, as I can request any other information (like server.info.architecture
or server.info.engine_version
) with the correct answer. I can also connect to any attached DB directly. That is also no problem. Just this call is not working. Am I doing something wrong? How can I debug this?
I have tried to change the encoding and charset of the server to see if it has to do something with the path names. However, there was no change.
I am on Windows x64 if that is of any help.