Java串連MySql的詳細介紹

來源:互聯網
上載者:User

 1.

  現在工程(不是Src)上右鍵--Build Path--Add External Archives,選擇驅動下的那個jar包,這是release版本,bin目錄下的是debug版本。

  樣本在docs下的connector-j.html,裡面有例子(其中的test是資料庫名,換位自己的)。

複製代碼 代碼如下:import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
Connection conn = null;
...
try {
conn =
DriverManager.getConnection("jdbc:mysql://localhost/test?" +
"user=monty&password=greatsqldb");
// Do something with the Connection
...
} catch (SQLException ex) {
// handle any errors
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
}

  2.可以直接在MySql控制台下建立資料庫,也可以在通過執行 "\. 絕對路徑名"。

  “--”是注釋符。

複製代碼 代碼如下:View Code
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class mysql {

/**
* @param args
*/
public static void main(String[] args) {// 多個try合并到一塊,然後使用source --- format
// TODO Auto-generated method stub
//若是用到finally則需要把聲明放在try外邊
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;

try {
Class.forName("com.mysql.jdbc.Driver");// 後面若是加上".newInstance"則還需要加上幾個拋出異常
conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?"
+ "user=root&password=root");
/*
* java.sql.Statement; 不是com.mysql這個包; 二者不可以同時存在
*/
stmt = conn.createStatement();
rs = stmt.executeQuery("select * from info");

while (rs.next()) {
System.out.println(rs.getString("name"));

}

// Do something with the Connection
} catch (ClassNotFoundException ex) {
// handle any errors
ex.printStackTrace();

} catch (SQLException ex) {
// TODO Auto-generated catch block
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
} finally {
try {
if(null!= rs) {
rs.close();
rs = null;
}

if(null!= stmt) {
stmt.close();
stmt = null;
}

if(null!= conn) {
conn.close();
conn = null;
}

} catch(SQLException e) {
e.printStackTrace();
}
}

}

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.