eclipse連接mysql的方法:
1.需要準備個mysql的jar驅動文件,下載地址https://www.mysql.com/products/connector/
2.找到JDBC Driver for MySQL (Connector/J),下載配置。
3.在eclipse配置好jdbc后。
4.新建一個CLASS類。
5.輸入代碼進行連接數據庫測試。
6.代碼如下:
import java.sql.*;
public class test{
public static void main(String args[]){
try{
Class.forName("com.mysql.cj.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?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT","root","xxxxxxx");
//連接URL為 jdbc:mysql//服務器地址/數據庫名 ,后面的2個參數分別是登陸用戶名和密碼
}catch(SQLException e){
}
}
}
7.運行代碼測試,當連接成功時,控制臺會打印成功連接的信息。