Java連接MySql的詳細介紹建站知識
導(dǎo)讀:1建站知識1. 現(xiàn)在工程(不是Src)上右鍵--Build Path--Add External Archives,選擇驅(qū)動下的那個jar包,這是release版本,bi網(wǎng)站建設(shè)哪家好網(wǎng)站建設(shè)。
1.
現(xiàn)在工程(不是Src)上右鍵--Build Path--Add External Archives,選擇驅(qū)動下的那個jar包,這是release版本,bin目錄下的是debug版本。
示例在docs下的connector-j.html,里面有例子(其中的test是數(shù)據(jù)庫名,換位自己的)。
復(fù)制代碼 代碼如下:
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控制臺下創(chuàng)建數(shù)據(jù)庫,也可以在通過執(zhí)行 "\. 絕對路徑名"。
“--”是注釋符。
復(fù)制代碼 代碼如下:
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則需要把聲明放在tseo網(wǎng)站關(guān)鍵詞優(yōu)化ry外邊
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver");// 后面若是加上".newInstance"則還需要加上幾個拋出異常
conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?網(wǎng)seo優(yōu)化趨勢"
+ "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;
}
企業(yè)網(wǎng)站建設(shè) } catch(SQLException e) {
e.printStackTrace();
}
}
}
}相關(guān)網(wǎng)站建設(shè)哪家好網(wǎng)站建設(shè)。
聲明: 本文由我的SEOUC技術(shù)文章主頁發(fā)布于:2023-05-23 ,文章Java連接MySql的詳細介紹建站知識主要講述詳細介紹,標(biāo)簽,Java連接MySql的詳細介紹建站知識網(wǎng)站建設(shè)源碼以及服務(wù)器配置搭建相關(guān)技術(shù)文章。轉(zhuǎn)載請保留鏈接: http://www.bifwcx.com/article/web_6062.html
為你推薦與Java連接MySql的詳細介紹建站知識相關(guān)的文章
-
通王TWCMS 2.0.3網(wǎng)站模板程序下載
(126)人喜歡 2024-01-15 -
Windows官方原版在哪里下載
(175)人喜歡 2024-01-15 -
WordPress網(wǎng)站模板發(fā)帖標(biāo)題顏色設(shè)置
(131)人喜歡 2024-01-07 -
修改discuz論壇帖子標(biāo)題80字符的長度限制
(249)人喜歡 2024-01-07 -
wordpress程序調(diào)用不帶超鏈接的Tag標(biāo)簽
(234)人喜歡 2024-01-05 -
網(wǎng)站在不同時期需調(diào)整內(nèi)容更新的方向
(112)人喜歡 2023-08-12