版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、數(shù)據(jù)庫(kù)系統(tǒng)應(yīng)用與開(kāi)發(fā) - 實(shí)驗(yàn)四實(shí)驗(yàn)JDBC 基礎(chǔ)( 3 )一、相關(guān)知識(shí)點(diǎn)1、JDBC 基本概念2、JDBC 數(shù)據(jù)增、刪、改,事務(wù)控制等二、實(shí)驗(yàn)?zāi)康模豪斫?Java 連接數(shù)據(jù)庫(kù)的基本概念。理解利用 Statement 對(duì)象、 PreparedStatement 對(duì)象進(jìn)行增、刪、改操作,理解事務(wù)的概念和 JDBC 編程方式。三、實(shí)驗(yàn)內(nèi)容:1、 利用 Statement 對(duì)象進(jìn)行數(shù)據(jù)添加。第 一 步 : 修 改PublisherManagercreatePublisher 方法,將其中的 insert成用 Statement 對(duì)象執(zhí)行;類 的語(yǔ)言改第二步:運(yùn)行圖書(shū)管理系統(tǒng), 進(jìn)行添加出版社測(cè)試?!?/p>
2、實(shí)驗(yàn)結(jié)果與分析】A、寫(xiě)出替換的代碼部分。Connection conn=null;trypubid=conn=DBUtil.String sql=+p.getPubid()+getConnection();select * from BeanPublisher where;/st.setString(1,p.getPubid();if(rs.next()thrownew BusinessException( 出版社編號(hào)已經(jīng)被占用 );rs.close();st.close();sql=select * from BeanPublisher wherepublisherName=+p.getPu
3、blisherName()+;st=conn.createStatement();st.setString(1, p.getPublisherName(); rs=st.executeQuery(sql);if(rs.next()thrownew BusinessException( 出版社名稱已經(jīng)存在 );values(rs.close();st.close();sql=insert into BeanPublisher(pubid,publisherName,address)+p.getPubid()+,+p.getPublisherName()+,+p.getAddress()+ );s
4、t=conn.createStatement();/st.setString(1, p.getPubid();/st.setString(2, p.getPublisherName();/st.setString(3,p.getAddress();st.execute(sql);st.close();catch(SQLException e) e.printStackTrace();thrownew DbException(e);2、 利用 insert 語(yǔ)句添加數(shù)據(jù)時(shí), 未指定字段值處理。第一步:運(yùn)行圖書(shū)管理系統(tǒng), 打開(kāi)讀者類別管理界面,并嘗試添加一個(gè)讀者類別; 系統(tǒng)將會(huì)報(bào)一個(gè)錯(cuò)誤,請(qǐng)分析說(shuō)
5、明錯(cuò)誤原因。reader.Typeid 是主碼,不能為空第二步:通過(guò)數(shù)據(jù)庫(kù)表結(jié)構(gòu)的修改, 解決上述問(wèn)題。并用同樣的方式解決圖書(shū)借閱功能的bug。打開(kāi) 企業(yè)管理器;打開(kāi) beanreadertype 表;打開(kāi) 設(shè)計(jì)表;將標(biāo)識(shí)改成是;第三步:如果表結(jié)構(gòu)不修改, 應(yīng)該如何修改程序,使新增讀者類別的 ID 為表中現(xiàn)有數(shù)據(jù)的最大 ID 值+1。publicvoidcreateReaderType(BeanReaderType rt)if(rt.getReaderTypeName()=nullthrows|BaseException.equals(rt.getReaderTypeName() | rt.g
6、etReaderTypeName().length()20)thrownew BusinessException( 讀者類別名稱必須是1-20個(gè)字);if(rt.getLendBookLimitted()100)thrownew BusinessException( 借閱圖書(shū)數(shù)量必須在0-100之間);Connection conn=null ;tryconn=DBUtil.getConnection();String sql=select * from BeanReaderType wherereaderTypeName=?;pst.setString(1, rt.getReaderType
7、Name();if(rs.next()thrownew BusinessException( 讀者類別名稱已經(jīng)被占用);rs.close();pst.close();sql=select max(readerTypeId)from BeanReadertypeinti=1;pst=conn.prepareStatement(sql);rs = pst.executeQuery();/id=rs.getint +1;if(!rs.next()/是否已經(jīng)有idi=1;elsei+=rs.getInt(1);sql=insert intoBeanReaderType(readerTypeId,rea
8、derTypeName,lendBookLimitted)values(?,?,?);pst=conn.prepareStatement(sql);pst.setInt(1,i);pst.setString(2, rt.getReaderTypeName();pst.setInt(3,rt.getLendBookLimitted();pst.execute();rs.close();pst.close();catch(SQLException e) e.printStackTrace();thrownew DbException(e);finallyif(conn!=null)tryconn.
9、close();catch(SQLException e) /TODO Auto-generated catch blocke.printStackTrace();3、 利用 PreparedStatement 對(duì)象進(jìn)行數(shù)據(jù)修改。在 SystemUserManager 類中,新建一個(gè)modifyUserName方法,實(shí)現(xiàn)用戶名稱( username 字段)的修改功能。并修改其 main 函數(shù),將 admin 用戶的名稱改為: 超級(jí)管理員?!緦?shí)驗(yàn)結(jié)果與分析】A、請(qǐng)?zhí)峁┓椒ùa和main 函數(shù)代碼。publicvoidmodifyUserName(String username)throwsBas
10、eExceptionConnection conn=null;tryconn=DBUtil.getConnection();String sql =update beansystemuser set username =+username+ where userid=admin;intrs = st.executeUpdate(sql);catch(SQLException e) e.printStackTrace();thrownew DbException(e);finallyif(conn!=null)tryconn.close();catch(SQLException e) /TODO
11、 Auto-generated catch blocke.printStackTrace();publicstaticvoidmain(String args)BeanSystemUser user=new BeanSystemUser();user.setUserid(admin);user.setUsername( 系統(tǒng)管理員 );user.setUsertype(管理員);trynew SystemUserManager().modifyUserName(catch(BaseException e) 超級(jí)管理員 );TODO Auto-generated catch block e.pr
12、intStackTrace();B、思考:如果上述方法的返回值為布爾類型,即如果成功修改了用戶名稱,則返回true ,如果用戶不存在或修改失敗返回false。應(yīng)該如何完善代碼。提示:主要 statement 或 PreparedStatement 對(duì)象的execute 方法和 executeUpdate 方法的區(qū)別。publicstaticvoidmain(String args)BeanSystemUser user=new BeanSystemUser();user.setUserid(admin);user.setUsername( 系統(tǒng)管理員 );user.setUsertype(管理
13、員);trynew SystemUserManager().modifyUserName(catch(BaseException e) 超級(jí)管理員1 );TODO Auto-generated catch block e.printStackTrace();publicvoidmodifyUserName(String username)throwsBaseExceptionConnection conn=null;tryconn=DBUtil.getConnection();String sql =update beansystemuser set username =+username+
14、where userid=admin;booleanrs = st.execute(sql);if(rs =true)System.out .print(ok);elseSystem.out .print(no);catch(SQLException e) e.printStackTrace();thrownew DbException(e);finallyif(conn!=null)tryconn.close();catch(SQLException e) TODO Auto-generated catch block e.printStackTrace();4、 Delete 語(yǔ)句的執(zhí)行。
15、修改用戶管理類中的用戶刪除方法,用刪除數(shù)據(jù)庫(kù)表中數(shù)據(jù)的形式代替現(xiàn)有軟刪除模式?!緦?shí)驗(yàn)結(jié)果與分析】A、修改后的 sql 語(yǔ)句部分是。sql=deleteBeanSystemUserwhereuserid=?;/deleteBeanSystemUser where userID=001B、如果對(duì)刪除函數(shù)進(jìn)行限制,要求不能刪除已經(jīng)有過(guò)借閱操作的用戶。應(yīng)如何修改代碼。提示:可參考讀者管理類中的讀者類別刪除方法。publicvoiddeleteUser(String userid)throwsBaseExceptionConnection conn=null;tryconn=DBUtil.getConn
16、ection();String sql=select removeDate from BeanSystemUser whereuserid=?;pst.setString(1,userid);if(!rs.next()thrownew BusinessException( 登陸賬號(hào)不if(rs.getDate(1)!=null)thrownew BusinessException(存在); 該賬號(hào)已經(jīng)被刪除 );rs.close();pst.close();sql=select * from BeanBookLendRecord wherelendOperUserid=?;pst=conn.p
17、repareStatement(sql);pst.setString(1,userid);rs=pst.executeQuery();if(!rs.next()sql=delete BeanSystemUser where userID=?;pst=conn.prepareStatement(sql);pst.setString(1, userid);pst.execute();pst.close();elsethrownew BusinessException( 該賬號(hào)已有借閱信息, 不能刪除 );catch(SQLException e) e.printStackTrace();throw
18、new DbException(e);finallyif(conn!=null)tryconn.close();catch(SQLException e) TODO Auto-generated catch block e.printStackTrace();5、在數(shù)據(jù)庫(kù)中建立一張 BeanBookLendRecord_backup 表,用于保存已經(jīng)歸還圖書(shū)的借閱記錄。其表結(jié)構(gòu)與BeanBookLendRecord表完全一致。要求在借閱管理類中,增加方法,實(shí)現(xiàn)已經(jīng)歸還數(shù)據(jù)的備份功能(備份完成后,在原表中刪除備份成功的數(shù)據(jù))。提示:注意事務(wù)控制?!緦?shí)驗(yàn)結(jié)果與分析】請(qǐng)?zhí)峁﹤浞荼淼慕ū碚Z(yǔ)句selec
19、t * into BeanBookLendRecord_backup from BeanBookLendRecord請(qǐng)?zhí)峁﹤浞莺瘮?shù)代碼publicvoida()null;trycon = DBUtil.getConnection();Stringsql= insert intoBeanBookLendRecord_backupfrom BeanBookLendRecord;sql=delete from BeanBookLendRecord;st=con.createStatement();rs=st.executeQuery(sql); catch(SQLException e)select
20、*e.printStackTrace();finallyif( con !=null)trycon.close();catch(SQLException e)e.printStackTrace();6、 如果需要記錄圖書(shū)的入庫(kù)時(shí)間 (需要包含時(shí)分秒),應(yīng)如何修改數(shù)據(jù)庫(kù)表結(jié)構(gòu)和相關(guān)代碼?【實(shí)驗(yàn)結(jié)果與分析】在 bookbeak 中添加: localdatepublicvoidcreateBook(BeanBook b)throwsBaseExceptionif(b.getBarcode()=null|b.getBarcode().length()20)thrownew BusinessException( .equals(b.getBarcode() | 條碼必須是1-20 個(gè)字 );if(b.getBookname()=null|b.getBookname().length()50)thrownew BusinessException( .equals(b.getBookname() | 圖書(shū)名稱必須是1-50個(gè)字);Connection co
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝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ù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 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è)合作社董事長(zhǎng)聘用合同
- 有機(jī)農(nóng)業(yè)旋耕施工組織方案
- 屋頂光伏系統(tǒng)安裝施工方案
- 2024-2025學(xué)年河北省邯鄲市高三上學(xué)期10月聯(lián)考地理試題及答案
- 校園水質(zhì)監(jiān)測(cè)數(shù)據(jù)公開(kāi)制度
- 小學(xué)班級(jí)團(tuán)結(jié)互助活動(dòng)方案
- 房車專賣(mài)店的賬務(wù)處理-記賬實(shí)操
- 學(xué)校體育工作的自查報(bào)告
- 以名師、名匠為引領(lǐng)的職業(yè)教育教師隊(duì)伍建設(shè)實(shí)踐與策略
- 城市高層建筑起重吊裝施工方案
- 一年級(jí)上冊(cè)全冊(cè)道德與法治教案全
- 中班健康《身體上的洞洞》課件
- GB/T 9452-2023熱處理爐有效加熱區(qū)測(cè)定方法
- 停車場(chǎng)施工方案及技術(shù)措施范本
- 高考地理一輪復(fù)習(xí)課件【知識(shí)精講+高效課堂】美食與地理環(huán)境關(guān)系
- 分居聲明告知書(shū)范本
- 2023年04月山東濟(jì)南市槐蔭區(qū)殘聯(lián)公開(kāi)招聘殘疾人工作“一專兩員”公開(kāi)招聘筆試參考題庫(kù)+答案解析
- 消失的13級(jí)臺(tái)階
- 營(yíng)銷管理知識(shí)點(diǎn)
- 船體強(qiáng)度與結(jié)構(gòu)設(shè)計(jì)課程設(shè)計(jì)
- 不寧腿綜合征診斷與治療
評(píng)論
0/150
提交評(píng)論