我使用嵌入在桌面应用程序中的 derby。但是当数据库路径(在任何级别的目录中)中有空格时,derby 驱动程序无法连接到数据库。
问候, :)
更新
public static final String connectionUrl = "jdbc:derby:[path]database;user=app;password=pass;";
String path = Utils.getPathOfJar();
String dbPath = connectionUrl.replace("[path]", path);
dbConnection = DriverManager.getConnection(dbPath);