Connecting to a Firebird databases #141
LeonOtto01
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
Hi @LeonOtto01 What was your problem? Can you share the ReplicaDB execution log? Some functions still don't work Java > 8 :( Thank you! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I just wanted to briefly share my experience connecting to a Firebird database and migrating data to PostgreSQL. Maybe some are as desperate as I am for such a solution, so here I have it.
I downloaded the official Firebird JDBC driver in version (5.0.2). I copied the "jaybird-5.0.2.java11" file to /lib/ in my ReplicaDB folder. I then created a new config.
source.connect=jdbc:firebirdsql://localhost:3050/c:/YOUR_PATH/DEMO-DB.FDB
source.user=username
source.password=password
source.table=database
source.connect.parameter.driver=org.firebirdsql.jdbc.FBDriver
Now you just need to change the IP, path, username, password and database name of your Firebird instance.
I tested this on Windows 11 with Java 19 and the newest Firebird 3.0
Beta Was this translation helpful? Give feedback.
All reactions