我启动了Derby Network Server,并且能够使用以下两种方法连接它:
DriverManager.getConnection("jdbc:derby://192.168.1.1:1527//opt/db", "user", "password");
和
DriverManager.getConnection("jdbc:derby://192.168.1.1:1527//opt/db" + ";user=user;password=password");
但是,我无法使用以下内容进行连接:
Properties props = new Properties();
props.put("user", "user");
props.put("password", "password");
DriverManager.getConnection("jdbc:derby://192.168.1.1:1527//opt/db", props);
我有什么遗失的东西吗?或者Derby不支持第三种方式?
答案 0 :(得分:0)
第三种方法工作正常,以前一定是错误的。对不起。