资源简介
这里是当时学校练习课程作业及答案,所有excesse答案.
代码片段和文件信息
package library;
import java.util.*;
import java.sql.*;
import java.text.*;
/**
* class Library represents the functionality of a library
*
* @author iCarnegie
* @version 1.0
*/
public class Library {
// singleton DBWrapper
private DBWrapper myConnection = null;
/**
* class Library constructor
*/
public Library() throws Exception {
myConnection = DBWrapper.Instance();
}
/**
* holdBook places a hold on book with given call number for the given
* member
*
* @param callNumber
* String call number of book to hold
* @param member
* Member member who wishes to hold the book.
* @return boolean
*/
public boolean holdBook(String callNumber Member member) throws Exception {
String sqlQuery = “select count(*) as counted from hold where callnumber=‘“
+ callNumber + “‘ and ssn=‘“ + member.getSSN() + “‘“;
boolean alreadyHeld = false;
ResultSet r = null;
// Select the count of the books. If it is 1 this book is already held.
r = myConnection.runQuery(sqlQuery);
if (r.next()) {
if (r.getInt(“counted“) == 1) {
alreadyHeld = true;
}
}
// if alreadyHeld is true then don‘t place a hold. Place a hold
// otherwise.
if (alreadyHeld) {
return true;
} else {
sqlQuery = “INSERT INTO Hold VALUES (“ + member.getSSN() + “ ‘“
+ callNumber + “‘ CURRENT_TIMESTAMP)“;
if (myConnection.runUpdate(sqlQuery) > 0)
return true;
else
return false;
}
}
/**
* checkinBook checks the book with the specified book id into the library.
*
* @param bookId
* int id of book to check in
* @return boolean
*/
public boolean checkInBook(int bookId) throws Exception {
// Build the sql query.
String sqlQuery = “UPDATE Book SET borrowerssn = null librarianssn = null duedate = null WHERE BookID = “
+ bookId;
// Run the update.
if (myConnection.runUpdate(sqlQuery) > 0)
return true;
else
return false;
}
/**
* approve a check out for book with given book id for a member with given
* member ssn
*
* @param bookId
* int id of book to check out
* @param memberSSN
* int ssn of member who wants to check book out
* @return boolean
*/
private boolean approveCheckout(int bookId int memberSSN) throws Exception {
boolean canCheckOut = true;
// check to see if that book is already checked out
boolean checkedOut = LibraryBook.isCheckedOut(bookId);
if (checkedOut) {
canCheckOut = false;
} else {
// see if another member has higher priority on this book
// We have to check the holds if the number of
// holds on this title exceeds the number of
// available copies.
String callNumber = LibraryBook.getBook(bookId).getCallNumber();
int availabl
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1121 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\exam1.sql
文件 592270 2012-05-25 16:34 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise8.rar
文件 107520 2012-03-05 13:46 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\SSD7全部QUIZ答案.doc
..A.SH. 162 2011-07-04 14:48 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\~$D7全部QUIZ答案.doc
..A.SH. 78336 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\~WRL0003.tmp
文件 33889 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\SSD7_Exam2\第一问(ER).JPG
文件 786 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\SSD7_Exam2\第一问(ER).txt
文件 1690 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\SSD7_Exam2\第三问.txt
文件 1199 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\SSD7_Exam2\第二问.txt
文件 4506 2013-12-30 13:22 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\application.txt
文件 1586 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\deadlock(Window 1).txt
文件 1118 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\deadlock(Window 2).txt
文件 2772 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\deadlock.txt
文件 4196 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\Ex9_ssd7.rar
文件 103936 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\exe9.doc
文件 1940 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\isolation(Window 1).txt
文件 1896 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\isolation(Window 2).txt
文件 3900 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\isolation.txt
文件 2028 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\rollback.txt
文件 305401 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\桌面.rar
文件 4591 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\Ex9_ssd7\application.txt
文件 1987 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\Ex9_ssd7\deadlock.txt
文件 3997 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\Ex9_ssd7\isolation.txt
文件 1507 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise9\Ex9_ssd7\rollback.txt
文件 2584 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise7\relational-model.sql
文件 3263 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise7\relational-schema.txt
文件 6144 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise7\ssd7-ex7.rar
文件 2136 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\Exercise6\normalization.txt
文件 1215 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\exercise5\entityattributes.txt
文件 22276 2011-03-20 21:12 SSD7所有exercise+部分quiz答案\SSD7所有练习答案\exercise5\ER.gif
............此处省略37个文件信息
- 上一篇:FastDFS集群安装所需要的所有文件
- 下一篇:操作系统:原理与实践 第一卷
相关资源
- 吴恩达深度学习第一课第四周编程作
- 最短路径数据结构作业-南京地图
- flash 大作业 flash动画1-3分钟
- 吴恩达”Deep Learning.ai“第三课《Str
- 软件文档写作作业
- 编译原理龙书部分答案1-9
- 清华大学研究生大规模数字集成电路
- 人机交互大作业.zip
- 中科大计算机模式识别读书报告作业
- 计算机图形大作业opengl-物联网.rar
- 图论 张 李 课后作业
- 樱花购物网源码.zip
- 编译原理课件和每章作业答案
- 作业文件.zip
- 徐亚宁_信号与系统全部作业的参考答
- 数据结构学生信息管理系统大作业
- CS231N作业源码,斯坦福机器学习课
- 大学生网页设计作业PSD源文件免费
- FLash 期末作业带源文件
- 同桌的你音乐动画MV.rar
- WEB个人网站设计作业
- 国科大算法设计与分析2017-2018作业与
- 软件体系结构作业和答案 2019级中科大
- 计算机网络大作业.
- 打地鼠AppInventor--课堂作业
- 千年之恋作业.zip
- Excel数据透视表素材+课件+作业
- 韩家炜版数据挖掘课后作业,英文原
- 大学课程设计 网页作业 简易大学课程
- 《数据库》实验报告+期末大作业源代
评论
共有 条评论