从文档中,我并没有真正得到连接到 derby 数据库时必须指定的内容,因为数据库的路径为java.io.File
.
path
以下代码中必须包含什么?
File dbDirectory;
// ...
String protocol = "jdbc:derby:";
conn = DriverManager.getConnection(protocol + path
+ ";create=true");
当然,它应该是系统独立的。我是否使用以下其中一项?
dbDirectory.getAbsolutePath()
dbDirectory.getCanonicalPath()