freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于java的圖書管理系統(tǒng)設(shè)計(jì)-資料下載頁(yè)

2025-05-13 21:52本頁(yè)面

【導(dǎo)讀】{ "error_code": 17, "error_msg": "Open api daily request limit reached" }

  

【正文】 ((4))。 ((5))。 ((6))。 ((7))。 ((8))。 (user)。 } } catch (Exception e) { ()。 } ()。 return list。 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 33 } public static int Updateuser(String uname,String upassword,String tname,String unumber,String college,String subject,String grade){ int i=0。 try{ (updating!)。 String sql=update users set upassword=39。+upassword+39。,tname=39。+tname+39。,unumber=39。+unumber+39。,college=39。+college+39。,subject=39。+subject+39。,grade=39。+grade+39。 where uname=39。+uname+39。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } public static int Updateuser_left_amount(String uname,String left_amount){ int i=0。 try{ (updating!)。 String sql=update users set left_amount=39。+left_amount+39。 where uname=39。+uname+39。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } public static int Deluser(String uname){ int i=0。 try{ String sql=delete from users where uname=39。+uname+39。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 34 } 借閱管理模塊代碼設(shè)計(jì) 該模塊包括圖書借閱、歸還、續(xù)借、超期罰款和借閱統(tǒng)計(jì)等功能的實(shí)現(xiàn) public static int UpdatePublish(String number){ int i=0。 try{ String sql=update publishment set number=39。+number+39。 where PID=0。 i=(sql)。 }catch(Exception e){ 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 35 (())。 } ()。 return i。 } public static List selectPublish() { List list=new ArrayList()。 String sql = select ,bookname,publish,author,isbn,price from book,publishment where =。 ResultSet rs = (sql)。 try { while (()) { //(123)。 BookInfo bookinfo=new BookInfo()。 ((isbn))。 ((number))。 ((bookname))。 ((author))。 ((publish))。 ((price))。 (bookinfo)。 } } catch (Exception e) { ()。 } ()。 return list。 } public static int Insertbook(String number,String bookname,String publish,String author,String isbn,String price,String category){ int i=0。 try{ String sql=insert into book(number,bookname,publish,author,isbn,price,category) values(39。+number+39。,39。+bookname+39。,39。+publish+39。,39。+author+39。,39。+isbn+39。,39。+price+39。,39。+category+39。)。 i=(sql)。 }catch(Exception e){ (())。 } ()。 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 36 return i。 } public static int Updatebook(String number,String bookname,String publish,String author,String isbn,String price){ int i=0。 try{ String sql=update book set bookname=39。+bookname+39。,publish=39。+publish+39。,author=39。+author+39。,isbn=39。+isbn+39。,price=39。+price+39。 where number=39。+number+39。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } public static int Updatebook_mode(String number,String mode){ int i=0。 try{ String sql=update book set mode=39。+mode+39。 where number=39。+number+39。 (sql)。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } public static int Delbook(String number){ int i=0。 try{ String sql=delete from book where number=39。+number+39。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 37 public static int InsertBookBorrow(String number,String uname,Timestamp borrowDate){ int i=0。 try{ String sql=insert into borrow(number,uname,lendtime,AID,returntime,isback)values(39。+number+39。,39。+uname+39。,39。+borrowDate+39。,39。00139。,DATEADD(dd,30,39。+borrowDate+39。),0)。 (sql)。 i=(sql)。 }catch(Exception e){ ()。 } ()。 return i。 } public static List selectBorrow(String Uname) { List list=new ArrayList()。 String sql = select AID,bookname,lendtime,returntime,isback from borrow,book where uname=39。+Uname+39。 and isback=0 and = 。 ResultSet rs = (sql)。 try { while (()) { Borrow borrow=new Borrow()。 ((AID))。 ((bookname))。 ((number))。 ((lendtime))。 ((returntime))。 ((isback))。 (borrow)。 } } catch (Exception e) { ()。 } ()。 return list。 } public static List selectBorrow(String number,String start_time,String end_time) { List list=new ArrayList()。 String sql = select * from borrow where number=39。+number+39。 and lendtime=39。+start_time+39。 and lendtime=39。+end_time+39。 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 38 ResultSet rs = (sql)。 try { while (()) { Borrow borrow=new Borrow()。 ((AID))。 ((uname))。 ((number))。 ((lendtime))。 ((returntime))。 ((isback))。 (borrow)。 } } catch (Exception e) { ()。 } ()。 return list。 } 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 39 圖書管理模塊代碼設(shè)計(jì) 該模塊包括圖書信息查詢,添加、刪除、修改圖書基本信息、圖書量統(tǒng)計(jì)等功能。 public static List selectBookInfo() { List list=new ArrayList()。 String sql = select * from book。 ResultSet rs = (sql)。 try { 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 40 while (()) { //(123)。 BookInfo bookinfo=new BookInfo()。 ((isbn))。 ((number))。 ((bookname))。 ((author))。 ((publish))。 ((price))。 ((mode))。 (bookinfo)。 } } catch (Exception e) { ()。 } ()。 return list。 } public static List selectBookInfo(String number) { List list=new ArrayList()。 String sql = select * from book where number=39。 + number +39。 ResultSet rs = (sql)。 try { while (()) { //(123)。 BookInfo bookinfo=new BookInfo()。 ((ISBN))。 ((number))。 ((bookname))。 ((author))。 ((publish))。 ((price))。 ((mode))。 (bookinfo)。 } } catch (Exception e) { ()。 } ()。 return list。 } 圖書管理系統(tǒng)設(shè)計(jì)報(bào)告 41 public static int UpdateBookBack(String lendtime){//歸還圖書操作 int i=
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1