String url="jdbc:mysql://localhost:3306/sample_db?user=rootpassword=your_password";
創(chuàng)新互聯(lián)建站服務(wù)項目包括房縣網(wǎng)站建設(shè)、房縣網(wǎng)站制作、房縣網(wǎng)頁制作以及房縣網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,房縣網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到房縣省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
例如:
import?java.sql.DriverManager;
import?java.sql.ResultSet;
import?java.sql.SQLException;
import?java.sql.Connection;
import?java.sql.Statement;
public?class?MysqlDemo?{
public?static?void?main(String[]?args)?throws?Exception?{
Connection?conn?=?null;
String?sql;
//?MySQL的JDBC?URL編寫方式:jdbc:mysql://主機(jī)名稱:連接端口/數(shù)據(jù)庫的名稱?參數(shù)=值
//?避免中文亂碼要指定useUnicode和characterEncoding
//?執(zhí)行數(shù)據(jù)庫操作之前要在數(shù)據(jù)庫管理系統(tǒng)上創(chuàng)建一個數(shù)據(jù)庫,名字自己定,
//?下面語句之前就要先創(chuàng)建javademo數(shù)據(jù)庫
String?url?=?"jdbc:mysql://localhost:3306/javademo?"
+?"user=rootpassword=rootuseUnicode=truecharacterEncoding=UTF8";
try?{
//?之所以要使用下面這條語句,是因為要使用MySQL的驅(qū)動,所以我們要把它驅(qū)動起來,
//?可以通過Class.forName把它加載進(jìn)去,也可以通過初始化來驅(qū)動起來,下面三種形式都可以
Class.forName("com.mysql.jdbc.Driver");//?動態(tài)加載mysql驅(qū)動
//?or:
//?com.mysql.jdbc.Driver?driver?=?new?com.mysql.jdbc.Driver();
//?or:
//?new?com.mysql.jdbc.Driver();
System.out.println("成功加載MySQL驅(qū)動程序");
//?一個Connection代表一個數(shù)據(jù)庫連接
conn?=?DriverManager.getConnection(url);
//?Statement里面帶有很多方法,比如executeUpdate可以實現(xiàn)插入,更新和刪除等
Statement?stmt?=?conn.createStatement();
sql?=?"create?table?student(NO?char(20),name?varchar(20),primary?key(NO))";
int?result?=?stmt.executeUpdate(sql);//?executeUpdate語句會返回一個受影響的行數(shù),如果返回-1就沒有成功
if?(result?!=?-1)?{
System.out.println("創(chuàng)建數(shù)據(jù)表成功");
sql?=?"insert?into?student(NO,name)?values('2012001','陶偉基')";
result?=?stmt.executeUpdate(sql);
sql?=?"insert?into?student(NO,name)?values('2012002','周小俊')";
result?=?stmt.executeUpdate(sql);
sql?=?"select?*?from?student";
ResultSet?rs?=?stmt.executeQuery(sql);//?executeQuery會返回結(jié)果的集合,否則返回空值
System.out.println("學(xué)號\t姓名");
while?(rs.next())?{
System.out
.println(rs.getString(1)?+?"\t"?+?rs.getString(2));//?入如果返回的是int類型可以用getInt()
}
}
}?catch?(SQLException?e)?{
System.out.println("MySQL操作錯誤");
e.printStackTrace();
}?catch?(Exception?e)?{
e.printStackTrace();
}?finally?{
conn.close();
}
}
}
這樣:
jdbc:mysql://hostname[:3306]/dbname
jdbc:mysql://localhost:3306/db_librarySys
Connection?conn?=?DriverManager.getConnection?("jdbc:mysql://localhost:3306/db_librarySys?user=rootpassword=1234");
Connection?conn?=?DriverManager.getConnection?("jdbc:mysql://localhost:3306/db_librarySys",?"root",?"1234");
擴(kuò)展資料:
注意事項
URL=協(xié)議名+子協(xié)議名+數(shù)據(jù)源名。
1、協(xié)議名總是“jdbc”。
2、子協(xié)議名由JDBC驅(qū)動程序的編寫者決定。
3、數(shù)據(jù)源名也可能包含用戶與口令等信息;這些信息也可單獨提供。
URL:jdbc:oracle:thin:@machine_name:port:dbname
注:machine_name:數(shù)據(jù)庫所在的機(jī)器的名稱;
port:端口號,默認(rèn)是1521
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl";
//orcl為數(shù)據(jù)庫的SID
String user="test";
String password="test";
Connection conn= DriverManager.getConnection(url,user,password);
注意:Oracle的URL有兩種寫法:
1、jdbc:oracle:thin:@localhost:1521:databaseName? ?常用操作sql的工具:sqlDeveloper.exe,還可以用其他數(shù)據(jù)庫,如mysql等
2、jdbc:oracle:oci:@localhost:1521:databaseName? ? 用來操作SQL的工具只能用:PL/SQL Developer;數(shù)據(jù)庫集群時候常用此連接,比上面那個多點功能,性能好點。
mysql5.0
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/testspringboot?useSSL=false
mysql8.0
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/testspringboot?useSSL=falseserverTimezone=UTC
1、首先登陸mysql,查看mysql的數(shù)據(jù)情況,select * from test_data1 t
2、新建java類,測試jdbc功能
3、編寫java的jdbc代碼,
String driver = "com.mysql.cj.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/testdb?characterEncoding=utf8useSSL=false";
String user = "root";
String pwd = "123456";
4、代碼中查詢mysql數(shù)據(jù)表,并執(zhí)行查出表中內(nèi)容;select * from test_data1
新聞名稱:url怎么鏈接mysql 連接mysql url
本文鏈接:http://www.rwnh.cn/article8/doggcop.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗、云服務(wù)器、、企業(yè)網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)