Eclipse連線MySQL資料庫(傻瓜篇)
阿新 • • 發佈:2019-01-30
本來不想寫這麼簡單人文章,在百度上搜索我這個標題,完全符合標題的一大堆。但我按照那些文章搗鼓了很久,就是不行。
我的環境:MySQL:mysql-essential-5.1.51-win32
Eclipse:任意版本,免費的,可以百度的到。
下面來建立一個數據:
mysql>CREATE DATABASE test; //建立一個數據庫 mysql>use test; //指定test為當前要操作的資料庫 mysql>CREATE TABLE user (name VARCHAR(20),password VARCHAR(20));//建立一個表user,設定兩個欄位。 mysql>INSERT INTO user VALUES('huzhiheng','123456'); //插入一條資料到表中
2。開啟Eclipse,建立一個專案(my),
操作:右鍵點選my--->build Path--->add external Archiver...選擇jdbc驅動,點選確定。
我的專案列表:
3。驅動已經匯入,下面我們來寫一個程式驗證一下
import java.sql.*; publicclass MysqlJdbc { publicstaticvoid 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","198876"); //連線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")); } } catch (Exception e) { System.out.print("get data error!"); e.printStackTrace(); } } }
點選執行程式:
Success loading Mysql Driver!
Success connect Mysql server!
huzhiheng
出現上面結果,說明你連線資料庫成功。
4。可以檢視到MySQL裡面的內容,那我們是不是想往MySQL中插入資料呢。 下面的例子,往MySQL的user表中插入100條資料import java.sql.*; publicclass Myjproject { publicstaticvoid 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","198876"); int num=100; PreparedStatement Statement=connect.prepareStatement("INSERT INTO user VALUES(?,?)"); for(int i=0;i<num;i++) //定義個100次的迴圈,往表裡插入一百條資訊。 { Statement.setString(1,"chongshi"+i); Statement.setString(2,"bo"+i); Statement.executeUpdate(); } // } catch (ClassNotFoundException e) { // TODO Auto-generated catch block // System.out.println("An error has occurred:"+e.toString()); // e.printStackTrace(); }catch(SQLException e) { } } }
5.下面我們開啟MySQL資料庫進行檢視
mysql>
show databases; //檢視所資料庫
|
mysql>
use test; //使test為當前要操作的資料庫
|
mysql>
show tables; //檢視當前資料庫的所有表
|
mysql>
select *from user; //檢視當前表(user)的所有資訊
|
注意:如果不能正常連線你的資料庫,請檢查你程式碼中,驅動、使用者名稱、密碼、表等資訊是否對應無誤,不要把別人的程式碼直接複製過來,看也不看就用。
from: http://www.cnblogs.com/fnng/archive/2011/07/18/2110023.html