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
jdbc:firebirdsql:embedded:<database>? - Alex Chermenin