国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > MySQL > 正文

Java連接MySql的詳細介紹

2024-07-24 12:42:10
字體:
來源:轉載
供稿:網友

 1.

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

  示例在docs下的connector-j.html,里面有例子(其中的test是數據庫名,換位自己的)。

復制代碼 代碼如下:www.survivalescaperooms.com

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控制臺下創建數據庫,也可以在通過執行 "/. 絕對路徑名"。

  “--”是注釋符。

復制代碼 代碼如下:www.survivalescaperooms.com

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();
}
}

}

}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 北海市| 三台县| 永善县| 吉木萨尔县| 蒲江县| 鲁山县| 灵丘县| 翁源县| 吴堡县| 祁门县| 德格县| 伊春市| 张家川| 靖州| 安远县| 繁昌县| 巨野县| 花莲市| 东平县| 科技| 成武县| 富阳市| 安乡县| 武胜县| 台南县| 淮阳县| 邵阳市| 乌兰察布市| 乌兰县| 汉源县| 山阴县| 西平县| 武夷山市| 原平市| 广南县| 叶城县| 朝阳区| 运城市| 镇雄县| 东山县| 凯里市|