import java.sql.*;
class MysqlCon{
public static void main(String args[]){
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","root");
//here test is the database name, root is the username and root is the password
Statement stmt=con.createStatement();
ResultSet rs=stmt.executeQuery("select * from person");
while(rs.next())
System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+rs.getString(3));
con.close();
}catch(Exception e){ System.out.println(e);}
}
}
正在使用textpad。我也通过添加外部罐子在日食上尝试过它。 我在jre / lib和jre / lib / ext中添加了mysql-connector.jar。 。 。仍然得到这个例外。为什么???请帮忙
答案 0 :(得分:0)
遵循这个..
右键点击您的项目 - >构建路径 - >添加外部档案 - >选择你的罐子
一切都好。跑你的班级。
在cmd中跟着这个..
c:\您的文件夹> javac -cp your_path_of_mysql-connector.jar MysqlCon.java
答案 1 :(得分:0)
jar文件不在您的构建路径中。