MyEclipse通過JDBC串連MySQL資料庫基本介紹

來源:互聯網
上載者:User

1.前提是MyEclipse已經能正常開發Java工程
2.安裝MySQL
個人使用的是版本是 mysql-5.0.22-win32.zip
網址:http://www.mysql.com/downloads/mysql/#downloads
3.下載JDBC驅動
個人使用的是 mysql-connector-java-5.1.22.zip,所需要的就是解壓縮之後其中的 mysql-connector-java-5.1.22-bin.jar
網址:http://www.mysql.com/downloads/connector/j/
4.代碼測試 複製代碼 代碼如下:package ts.jsj.lyh;

import java.sql.*;

/** *//**
* 使用JDBC串連資料庫MySQL的過程
* DataBase:JSJ, table:student;
* @author DuChangfeng 2008 09 18
*/
public class JDBCTest {

public static Connection getConnection() throws SQLException,
java.lang.ClassNotFoundException
{
//第一步:載入MySQL的JDBC的驅動
Class.forName("com.mysql.jdbc.Driver");

//取得串連的url,能訪問MySQL資料庫的使用者名稱,密碼;jsj:資料庫名
String url = "jdbc:mysql://localhost:3306/jsj";
String username = "root";
String password = "111";

//第二步:建立與MySQL資料庫的串連類的執行個體
Connection con = DriverManager.getConnection(url, username, password);
return con;
}

public static void main(String args[]) {
try
{
//第三步:擷取串連類執行個體con,用con建立Statement對象類執行個體 sql_statement
Connection con = getConnection();
Statement sql_statement = con.createStatement();

/** *//************ 對資料庫進行相關操作 ************/
//如果同名資料庫存在,刪除
//sql_statement.executeUpdate("drop table if exists student");
//執行了一個sql語句產生了一個名為student的表
//sql_statement.executeUpdate("create table student (id int not null auto_increment, name varchar(20) not null default 'name', math int not null default 60, primary key (id) ); ");
//向表中插入資料
//sql_statement.executeUpdate("insert student values(1, 'liying', 98)");
//sql_statement.executeUpdate("insert student values(2, 'jiangshan', 88)");
//sql_statement.executeUpdate("insert student values(3, 'wangjiawu', 78)");
//sql_statement.executeUpdate("insert student values(4, 'duchangfeng', 100)");
//---以上操作不實用,但是列出來作為參考---

//第四步:執行查詢,用ResultSet類的對象,返回查詢的結果
String query = "select * from student";
ResultSet result = sql_statement.executeQuery(query);
/** *//************ 對資料庫進行相關操作 ************/

System.out.println("Student表中的資料如下:");
System.out.println("------------------------");
System.out.println("學號" + " " + "姓名" + " " + "資料成績 ");
System.out.println("------------------------");

//對獲得的查詢結果進行處理,對Result類的對象進行操作
while (result.next())
{
int number = result.getInt("sno");
String name = result.getString("sname");
String mathScore = result.getString("sgrade");
//取得資料庫中的資料
System.out.println(" " + number + " " + name + " " + mathScore);
}

//關閉串連和聲明
sql_statement.close();
con.close();

} catch(java.lang.ClassNotFoundException e) {
//載入JDBC錯誤,所要用的驅動沒有找到
System.err.print("ClassNotFoundException");
//其他錯誤
System.err.println(e.getMessage());
} catch (SQLException ex) {
//顯示資料庫連接錯誤或查詢錯誤
System.err.println("SQLException: " + ex.getMessage());
}
}

}

以上大部分內容整理自網路,感謝猿猿們的無私奉獻~~具體的步驟、強大的互連網上都比較容易查詢的到,這裡不再贅述,現加上幾點個人認為需要注意的地方:

1)關於mysql-connector-java-5.1.22-bin.jar 的存放位置。在MyEclipse具體的java工程中建立一存放jar 包的檔案夾(如 lib),將mysql-connector-java-5.1.22-bin.jar 複製到檔案夾中,選中jar包右擊--->Build Path--->Add To Build Path,即可。

若出現

ClassNotFoundExceptioncom.mysql.jdbc.Driver

的提示,則正是由於缺少匯入jar包所造成的。

2)如果已經對MySQL的使用很熟悉,則可忽略這條。個人在測試連接時,老是出現這樣的異常提示:

SQLException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.

這正是由於個人對MySQL使用不熟悉,對MySQL進行了諸多嘗試性的操作,不知何時無意中將MySQL的服務(如果在安裝MySQL時沒有更改的話,預設服務名就是MySQL)關閉,解決方案開啟此服務即可。控制台--->管理工具--->服務--->MySQL--->選擇啟用。

3)在使用上面的代碼測試時,需要更改的地方有:
//MySQL資料庫的使用者名稱,密碼,資料庫名 複製代碼 代碼如下:String url = "jdbc:mysql://localhost:3306/jsj";
String username = "root";
String password = "111";

以及具體基本表中的所要查詢的欄位名: 複製代碼 代碼如下:int number = result.getInt("sno");
String name = result.getString("sname");
String mathScore = result.getString("sgrade");

多多分享,有問題歡迎交流~~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.