程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 用Eclipse銜接MySQL數據庫的步調

用Eclipse銜接MySQL數據庫的步調

編輯:MySQL綜合教程

用Eclipse銜接MySQL數據庫的步調。本站提示廣大學習愛好者:(用Eclipse銜接MySQL數據庫的步調)文章只能為提供參考,不一定能成為您想要的結果。以下是用Eclipse銜接MySQL數據庫的步調正文


我的情況:MySQL:mysql-essential-5.1.51-win32

裝置之前的預備任務:

jdbc驅動

Eclipse:隨意率性版本,收費的,可以百度的到。

1.MySQL裝置

上面來創立一個數據:

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.*; 
public class MysqlJdbc { 
 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","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! 

湧現下面成果,解釋你銜接數據庫勝利。

4.可以檢查到MySQL外面的內容,那我們是否是想往MySQL中拔出數據呢。

上面的例子,往MySQL的user表中拔出100條數據

import java.sql.*; 
 
public class Myjproject { 
 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","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 tatabases; //檢查所數據庫 
mysql> use test;  //使test為以後要操作的數據庫 
mysql> show tables; //檢查以後數據庫的一切表 
view sourceprint? 
mysql> select *from user; //檢查以後表(user)的一切信息 

留意:假如不克不及正常銜接你的數據庫,請檢討你代碼中,驅動、用戶名、暗碼、表等信息能否對應無誤,不要把他人的代碼直接復制過去,看也不看就用。

以上就是用Eclipse銜接MySQL數據庫的全體進程,願望對年夜家的進修有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved