Reputation: 882
Using the newest Enterprise Architect (EA16) gives the ability to store models in a Firebird database file with extension feap.
Installing EA16 on Win10 also installs an ODBC driver, named EA Firebird ODBC driver.
If I try to install an .feap-file to Win10 ODBC sources for that driver, I am asked for a User, Password and Role specification that I was not able to find out. I have tried no specification, SYSDBA/masterkey and ADMIN/password - without success. I have asked at Sparx Forum - without success.
Do you know these credentials? Or: is it possible to enter a new user/pwd to an existing Firebird DB file, granting priviledges?
Upvotes: 0
Views: 405
Reputation: 109090
The following answer is based on a number of assumptions. I don't know Enterprise Architect, so I cannot experiment to verify this.
I think Enterprise Architect uses the Firebird Embedded library, and doesn't actually have a Firebird server running. Based on the first bytes mentioned by qwerty_so in the comments, it seems it is using Firebird 2.5 or earlier.
Based on this information, you can do the following:
Firebird Embedded requires a username, but doesn't perform authentication, so the password is ignored, and any user name should do (though you should use one with sufficient permissions, so likely SYSDBA is the best choice).
Install a Firebird 2.5 server, and connect through this server to the database file.
With this option, you're in charge of the credentials, so use the SYSDBA password you configured in the installer.
Upvotes: 2