作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想编写一个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 添加到类路径中。
有多种方法可以做到这一点。
javac -cp "JAR_PATH"类名.javajava -cp "JAR_PATH"类名
在 C:\Program Files\Java\\jre\lib\ext 中添加 jar 文件
设置类路径=PATH_TO_JAR;
关于java - 如何在不使用IDE/外部工具的情况下建立Java程序和数据库之间的连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52601544/
我是一名优秀的程序员,十分优秀!