DbSchema is a Firebird ER diagram database designer and query tool. Using DbSchema, you can design and document Firebird databases while connected to the database server or without a connection.
Next, you can share the design with the team using Git. The design model loaded in DbSchema can be compared with the database, synchronization scripts can be generated, and the schema can be deployed to any database server.
Choose "Connect to the database" or "New Model Connected to the Database" will let you select your database and open the Connection Dialog.
DbSchema automatically downloads the JDBC driver to connect to your database.
In the Connection Dialog window, select the JDBC URL you want to connect with. If your database is running in the cloud, choose Edit Manually and insert the JDBC URL from the cloud console.
Enter the host name, the authentication details, select your database as described in the Connection Dialog page.
All cloud providers, like AWS, Oracle or Google allows to get the JDBC URL in the cloud console. In DbSchema Connection Dialog choose 'Manually Edit the JDBC URL' and copy the URL.
Connect from DbSchema using the default user SYSDBA with password masterkey,
and the 'C:\dbtest.dbf' in the Database field.
Download Firebird Sql from: https://firebirdsql.org
Select the components
Create or don't create start-up folders....Select Additional tasks:
You may manage also the way Firebird is running using a tool you can download afterwards from 'https://firebirdsql.org'.
Before connecting to Firebird create a database in Firebird by launching ISQL and execute
create database 'c:/dbtest.dbf' user 'SYSDBA' password 'masterkey';
commit;
- https://firebirdsql.org - https://github.com/FirebirdSQL/jaybird/wiki/Jaybird-and-Firebird-3