教你如何Java鏈接數據庫的使用步驟介紹

1. 引入外部jar包(mysql提供的Java使用者的鏈接器) html

工程上右鍵-->build path --> config buildpath --> liberies java

-->add external jars mysql

-->選擇對應的mysql-connectorXXXXXX.jar sql

看到工程上有jar文件則證實引入成功 。 數據庫

2. 編程 編程

(1)註冊數據庫驅動 ui


Class.forName("com.mysql.jdbc.Driver");


(2)建立鏈接 url


String url = "jdbc:mysql://192.168.0.243:3306/test";
String userName = "root";
String password = "root";
Connection conn = DriverManager.getConnection(url, userName, password);


(3)建立SQL信使 code


PreparedStatement stmt = conn.createPreparedStatement();


(4)執行SQL語句 htm


int i = stmt.executeUpdate("insert into employee values ('10070004', '張三丰', 1, '2005-05-23', 0, 1001, '2007-02-02', 200)");


(5)異常捕獲、關閉資源

相關文章
相關標籤/搜索