eclipse检测是否连接mysql数据库

eclipse检测是否连接上数据库

1、先找到Data Source Explorer 2、找到Database connection,并new找到自己的要连接的数据库 3、next,如果没有值则点击添加 4、忽略红叉,并移除自带的包,添加自己的jar包,可以自己天前下载好 但是最后报错了,估计是因为我的版本问题 于是我换了一种连接方式 1、建立一个项目,包,类,目录结构如下: 编写连接语句:

package JavaConnectMysql;
 
import java.sql.*;
 
public class JavaConnectMysql {
          
   
 
	public static void main(String args[]) {
          
     
	    try {
          
     
	      Class.forName("com.mysql.jdbc.Driver");     //加载MYSQL JDBC驱动程序     
	      //Class.forName("org.gjt.mm.mysql.Driver");  
	     System.out.println("Success loading Mysql Driver!");  
	    }  
	    catch (Exception e) {
          
     
	      System.out.print("Error loading Mysql Driver!");  
	      e.printStackTrace();  
	    }  
	    try {
          
     
	      Connection connect = DriverManager.getConnection(  
	          "jdbc:mysql://localhost:3306/test","root","123456");  
	           //连接URL为   jdbc:mysql//服务器地址/数据库名  ,后面的2个参数分别是登陆用户名和密码  
	  
	      System.out.println("Success connect Mysql server!");  
	      Statement stmt = connect.createStatement();  
	      ResultSet rs = stmt.executeQuery("select * from user");  
	                                                              //user 为你表的名称  
	      while (rs.next()) {
          
     
	        System.out.println(rs.getString("name")); 
	        System.out.println(rs.getString("passwd")); 
	      }  
	    }  
	    catch (Exception e) {
          
     
	      System.out.print("get data error!");  
	      e.printStackTrace();  
	    }  
	  }  
}

运行出: Success loading Mysql Driver!则成功

Error loading Mysql Driver!否则失败

经验分享 程序员 微信小程序 职场和发展