gpt4 book ai didi

Java建立连接数据库

转载 作者:搜寻专家 更新时间:2023-10-30 23:07:46 24 4
gpt4 key购买 nike

我想连接到我计算机上的数据库。我已经创建了一个数据库,但我无法连接。我总是得到一个 classnotfoundexception。我不知道如何解决它。我的数据库名为 begindb,我想使用 org.apache.jdbc.ClientDriver 作为驱动程序。这是我程序中的代码:

private final static String JDBC_URL="jdbc:derby://localhost/begindb";
private final static String JDBC_DRIVER="org.apache.derby.jdbc.ClientDriver";
private final static String USER_ID="test";
private final static String PASSW="test";
public static void main(String[] args) {
try{
Class.forName(JDBC_DRIVER);
try(Connection conn = DriverManager.getConnection(JDBC_URL, USER_ID, PASSW)){
System.out.println("good job!!");
}
catch(SQLException e){
System.out.println("Error.");
}
}
catch(ClassNotFoundException e)
System.out.println(e.getMessage());
}
}

所以 try 语句中的第一行将不起作用。因为我收到了 classnotfoundexception。

最佳答案

来自documentation第 4 步 -

To use the Derby Network Client JDBC driver, set your CLASSPATH to include the jar files listed below:

derbyclient.jar: contains the JDBC driver

derbytools.jar: optional, provides the ij tool

derbyclient.jar 添加到您的 project classpath .

  1. 扩展您的项目。
  2. 右键单击库。
  3. 选择添加 Jar/文件夹。
  4. 选择“derbyclient.jar”

关于Java建立连接数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24289076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com