How to specify relative path for embedded Firebird?
This is not how it works: jdbc:firebirdsql://localhost/exam.fdb

  • Maybe so try jdbc:firebirdsql:embedded:<database> ? - Alex Chermenin
  • So it works with an absolute path: String strDatabasePath = "/Users/svetlanailina/Desktop/JAVAFX/JavaFX12_02/EXAM.FDB"; String strURL = "jdbc: firebirdsql: localhost / 3050:" + strDatabasePath + "? Lc_ctype = WIN1251; sql_dialect = 3"; This way it doesn't work with embedded: String strURL = "jdbc: firebirdsql: embedded: EXAM.FDB"; - svil

0