下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、JavaEEWEB工程師培訓(xùn)-JDBC+Servlet+JSP整合開發(fā)之03.JDBCStatement(l)Statement執(zhí)行DDL使用插入記錄、修改記錄、刪上季我們建立了與數(shù)據(jù)庫(kù)的連接,本季我們將對(duì)數(shù)據(jù)庫(kù)進(jìn)行操作使用Statement執(zhí)行DML常用的插入、更新、刪除及查詢數(shù)據(jù)哈?Statement簡(jiǎn)介-Statement提供了一個(gè)操作數(shù)據(jù)庫(kù)語(yǔ)句的功能,可通過它來創(chuàng)建表、除記錄等操作?獲得Statement-可以從數(shù)據(jù)庫(kù)連接Connection中獲得StatementConnectionconn=newConnectionUtil().getConnection();Statements
2、tmt=conn.createStatement();ConnectionUtil.javapackagecom.michael.jdbc;importjava.sql.Connection;importjava.sql.DriverManager;importjava.util.Properties;publicclassConnectionUtil(/第一種方法publicConnectiongetConnection()(Connectionconn=null;try(/Class.forName加載驅(qū)動(dòng)Class.forName("com.mysql.jdbc.Driver&
3、quot;);/DriverManager獲得連接conn=DriverManager.getConnection("jdbc:mysql:/localhost:3306/jdbc_db”,"root”,"mysqladmin");returnconn;)catch(Exceptione)(e.printStackTrace();)returnnull;)/第二種方法publicConnectiongetConnection(Stringdriver,Stringurl,Stringuser,Stringpassword)(Connectionconn=
4、null;try(/Class.forName加載驅(qū)動(dòng)Class.forName(driver);/DriverManager獲得連接conn=DriverManager.getConnection(url,user,password);returnconn;catch(Exceptione)e.printStackTrace();returnnull;/第三種方法publicConnectionopenConnection()Stringdriver=""Stringurl=""Stringuser=""Stringpassword
5、=""Propertiesprop=newProperties();Connectionconn=null;try/加載屬性文件prop.load(this.getClass().getClassLoader().getResourceAsStream("DBCperties");driver=prop.getProperty("driver");url=prop.getProperty("url");user=prop.getProperty("user");password
6、=prop.getProperty("password");/Class.forName加載驅(qū)動(dòng)Class.forName(driver);/DriverManager獲得連接conn=DriverManager.getConnection(url,user,password);returnconn;catch(Exceptione)e.printStackTrace();returnnull;TestStatement.javapackagecom.michael.jdbc;importjava.sql.Connection;importjava.sql.SQLExcep
7、tion;importjava.sql.Statement;publicclassTestStatementpublicstaticvoidgetStatement()Connectionconn=newConnectionUtil().openConnection();tryStatementstmt=conn.createStatement();System.out.println(stmt);catch(SQLExceptione)/TODOAuto-generatedcatchblocke.printStackTrace();Main.javapackagecom.michael.ma
8、in;importcom.michael.jdbc.ConnectionUtil;importcom.michael.jdbc.TestStatement;publicclassMain*paramargs*/publicstaticvoidmain(Stringargs)ConnectionUtilcu=newConnectionUtil();/第一種方法System.out.println("第一種方法:"+cu.getConnection();/第二種方法System.out.println("第二種方法:"+cu.getConnection(co
9、m.mysql.jdbc.Driver","jdbc:mysql:/localhost:3306/jdbc_db","root","mysqladmin");/第三種方法System.out.println("第三種方法:"+cu.openConnection();TestStatement.getStatement();)測(cè)試結(jié)果:TasksfsfcErtwnr目??阽枳稹?:ZSarvars-Mtin(2)Jv«AppLic«tionb;拳以汶|SiSB|國(guó)-r3第一神方法:co旬
10、.mysql.jbc.ConaectlonllQcea第二特方法心口昂加”iuiMEQii。losoeiiteemHtttysqi.jdbc.Connectianecib£3i到町!uunjWrittblShut環(huán)Et20:37有術(shù)情寫"可?使用Statement執(zhí)行DDL-可以使用Statement來執(zhí)行一個(gè)數(shù)據(jù)定義語(yǔ)句,例如:創(chuàng)建一張表TestStatement.javapackagecom.michael.jdbc;importjava.sql.Connection;importjava.sql.SQLException;importjava.sql.Statemen
11、t;publicclassTestStatementpublicstaticvoidgetStatement()(Connectionconn=newConnectionUtil().openConnection();try(Statementstmt=conn.createStatement();System.out.println(stmt);catch(SQLExceptione)(/TODOAuto-generatedcatchblocke.printStackTrace();publicstaticvoidcreateTable()(/DDL數(shù)據(jù)定義語(yǔ)句Connectionconn=
12、newConnectionUtil().openConnection();Stringsql="createtableCustomerTbl(idintprimarykeyauto_increment,namevarchar(20),emailvarchar(20)”;try(Statementstmt=conn.createStatement();/執(zhí)行SQL語(yǔ)句stmt.execute(sql);catch(SQLExceptione)(/TODOAuto-generatedcatchblocke.printStackTrace();finally(if(conn!=null)t
13、ry(conn.close();catch(SQLExceptione)(conn=null;e.printStackTrace();Main.javapackagecom.michael.main;importcom.michael.jdbc.ConnectionUtil;importcom.michael.jdbc.TestStatement;publicclassMain*paramargs*/publicstaticvoidmain(Stringargs)ConnectionUtilcu=newConnectionUtil();/第一種方法System.out.println(&quo
14、t;第一種方法:"+cu.getConnection();/第二種方法System.out.println("第二種方法:"+cu.getConnection(com.mysql.jdbc.Driver","jdbc:mysql:/localhost:3306/jdbc_db","root","mysqladmin");/第三種方法System.out.println("第三種方法:"+cu.openConnection();TestStatement.getStatemen
15、t();TestStatement.createTable();)測(cè)試結(jié)果:i;*iihwcIhdiindbltijiqi*ivu-wmjaIIBFfeNH葺*MILIWIEl*(41IvStOlII1MRLjSJlKk>liMi、.4上單yfjjwjiMji'iritf.f?使用Statement執(zhí)行DML-更新?InsertTestStatement.javapackagecom.michael.jdbc;importjava.sql.Connection;importjava.sql.SQLException;importjava.sql.Statement;publicc
16、lassTestStatementpublicstaticvoidgetStatement()Connectionconn=newConnectionUtil().openConnection();tryStatementstmt=conn.createStatement();System.out.println(stmt);catch(SQLExceptione)/TODOAuto-generatedcatchblocke.printStackTrace();publicstaticvoidcreateTable()/DDL數(shù)據(jù)定義語(yǔ)句Connectionconn=newConnection
17、Util().openConnection();Stringsql="createtableCustomerTbl(idintprimarykeyauto_increment,namevarchar(20),emailvarchar(20)"tryStatementstmt=conn.createStatement();/執(zhí)行SQL語(yǔ)句stmt.execute(sql);catch(SQLExceptione)/TODOAuto-generatedcatchblocke.printStackTrace();finallyif(conn!=null)tryconn.close
18、();catch(SQLExceptione)conn=null;e.printStackTrace();/DML數(shù)據(jù)操作語(yǔ)句-CRUD:create、retrive、update、deletepublicstaticvoidtestInsert()/DDL數(shù)據(jù)定義語(yǔ)句Connectionconn=newConnectionUtil().openConnection();Stringsql="insertintoCustomerTbl(name,email)values('Michael','michael')"tryStatementstmt=conn.createStatement();/執(zhí)行SQL語(yǔ)句stmt.executeUpdate(sql);catch(SQLExceptione)/TODOAuto-generatedcatchblocke.printStackTrace();finallyif(conn!=null)tryconn.close();catch(SQLExceptione)conn=n
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 農(nóng)業(yè)現(xiàn)代化背景下的農(nóng)村商業(yè)機(jī)遇
- 辦公空間升級(jí)與學(xué)校物業(yè)服務(wù)的協(xié)同效應(yīng)
- 辦公技能與職業(yè)素養(yǎng)的同步提升策略
- 辦公樓宇安全用電及消防管理策略
- 農(nóng)業(yè)科技發(fā)展趨勢(shì)下的機(jī)械投資選擇
- 2025年中國(guó)遮瑕行業(yè)市場(chǎng)運(yùn)營(yíng)現(xiàn)狀及投資規(guī)劃研究建議報(bào)告
- 2024-2025年中國(guó)財(cái)產(chǎn)險(xiǎn)行業(yè)市場(chǎng)調(diào)查研究及投資前景預(yù)測(cè)報(bào)告
- 彈力呢行業(yè)深度研究報(bào)告
- 2024-2026年中國(guó)農(nóng)業(yè)保險(xiǎn)行業(yè)發(fā)展監(jiān)測(cè)及投資戰(zhàn)略規(guī)劃研究報(bào)告
- 2023-2029年中國(guó)鐵路信號(hào)行業(yè)市場(chǎng)深度分析及投資戰(zhàn)略規(guī)劃建議報(bào)告
- 2024年全國(guó)兩會(huì)精神講解課件
- 糧油店小區(qū)附近創(chuàng)業(yè)計(jì)劃書
- 民政系統(tǒng)風(fēng)險(xiǎn)分析報(bào)告
- 提高術(shù)前準(zhǔn)備完善率品管圈課件
- 瘋狂猜歌名(含音頻)
- 心內(nèi)科年終總結(jié)匯報(bào)
- 淺談農(nóng)村中學(xué)德育教育的現(xiàn)狀及對(duì)策
- 菲律賓民宿行業(yè)分析
- 安保人員崗位排班表
- PCB設(shè)計(jì)工程師年終個(gè)人工作總結(jié)與工作計(jì)劃
- 廣西柳州市2023-2024學(xué)年九年級(jí)上學(xué)期期末數(shù)學(xué)試卷+
評(píng)論
0/150
提交評(píng)論