(1)匯入jar包版
(2)將下載好的jar包放到工程檔案的 lib 資料夾下面
(3)開始連線
1、載入資料庫的驅動
Class.forName("com.mysql.jdbc.Driver");
變紅就丟擲或者用try...catch環繞
如果,MySQL的jar包版本高於8,那麼就得改成
Class.forName("com.mysql.cj.jdbc.Driver");
2、宣告資料庫地址:
String url="jdbc:mysql://localhost:3306/資料庫名?useSSL=false&characterEncoding=utf-8"
資料庫名稱改成自己的。
3、宣告賬號和密碼
Str username= "root"; //資料庫賬號,預設是root
String password= "******"; //資料庫密碼
4、然後呼叫Connection方法進行連線
connection = DriverManager.getConnection(url, Name, Pass);
5、透過Connection物件獲取Statement物件
statement = connection.createStatement();
6、定義sql語句
String sql = "select * from xxx";
7、然後開始執行sql語句
statement.executeQuery(sql);
8、關閉連線
connection.close();