gpt4 book ai didi

java - 如何在不使用IDE/外部工具的情况下建立Java程序和数据库之间的连接?

转载 作者:行者123 更新时间:2023-11-29 16:55:16 26 4
gpt4 key购买 nike

我想编写一个Java程序来建立Java程序和数据库之间的连接,但我不想使用任何IDE,如Netbeans、Eclipse、Visual Studio、XAMP等。我有所需DBMS驱动程序的jar文件.

public class JDBCDemo
{
public static void main(String args[])
{
try
{
/**
* Steps for Establishing Connection between Java Application and Database
*/

//1. Load and Reginster Driver
Class.forName("com.mysql.jdbc.Driver");

//2. Establish a connection between Java Application and Database
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/practicals", "root", "root123");

//3. Create Statement Object
Statement st = con.createStatement();

//4. Send and Execute SQL queries
ResultSet rs = st.executeQuery("SELECT * FROM tushar");

//5. Process the result from ResultSet object
while(rs.next())
{
System.out.println(rs.getString(1));
}

//6. Close the Connection
con.close();
}
catch(Exception e)
{
System.out.println(e.toString().trim());
}
}
}

显示错误java.lang.ClassNotFoundException:com.mysql.jdbc.Driver

如何建立连接?

最佳答案

在运行程序之前,您需要将 mysql 驱动程序 jar 添加到类路径中。

有多种方法可以做到这一点。

  1. javac -cp "JAR_PATH"类名.javajava -cp "JAR_PATH"类名

  2. 在 C:\Program Files\Java\\jre\lib\ext 中添加 jar 文件

  3. 设置类路径=PATH_TO_JAR;

关于java - 如何在不使用IDE/外部工具的情况下建立Java程序和数据库之间的连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52601544/

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