public int RetBooks(Borrow r) { int ret = 0; try{ borCon.connectDB(); String sqlret = "update borrow set state='"+"0"+"' where ISBN='" + r.getIsbn() + "' and readerID=" + r.getID(); borCon.statement = borCon.connection.prepareStatement(sqlret); ret = borCon.statement.executeUpdate(sqlret); } catch (SQLException throwable) { throwable.printStackTrace(); }finally { borCon.close(); } return ret; }
时间: 2024-02-14 19:20:57 浏览: 148
这段代码看起来是一个 Java 方法,名为 RetBooks,输入参数为一个 Borrow 对象,输出为一个整型值。它的作用是更新 borrow 表中的某一行数据,将其 state 字段的值设为 0,这个更新操作是根据输入的 Borrow 对象中的 ISBN 和 readerID 字段所对应的值来进行的。在方法中,首先建立了一个数据库连接,然后构造了一个 SQL 更新语句,接着使用 PreparedStatement 对象执行这个 SQL 语句,并返回执行结果。如果在执行过程中发生了异常,会将异常信息打印出来,最后无论是否发生异常都会关闭数据库连接。
相关问题
public class BorrowSQL { ConnectionSQL borCon = new ConnectionSQL(); //判断是否超出借阅数量限制 public int check(Borrow r) { int borrowing = -1; try{ borCon.connectDB(); String sql = "select COUNT(readerID) from borrow where readerID=" + r.getID(); borCon.statement = borCon.connection.prepareStatement(sql); borCon.resultSet = borCon.statement.executeQuery(sql); if(borCon.resultSet .next()){ borrowing = borCon.resultSet .getInt("COUNT(readerID)"); } } catch (SQLException throwable) { throwable.printStackTrace(); }finally { borCon.close(); } return borrowing; }翻译一下这段代码
这段代码定义了一个名为BorrowSQL的类,其中包含一个名为borCon的ConnectionSQL对象。该类还有一个名为check的方法,其参数为一个Borrow对象,返回一个整数类型的值。该方法的作用是连接到数据库,执行查询语句以获取指定读者已借阅的数量,然后将其返回。如果在查询过程中发生异常,则将其打印出来。无论是否发生异常,最终都会关闭连接。
public List<BForm> selectByBookNameAndReaderId(String BookName,String ReaderId) { System.out.println("select_BookName_And_ReaderId..."); bList=new ArrayList(); try { Bfcon.connectDB(); String sql="SELECT bor.borrowDate,bor.staffID,b.ISBN, b.bookname, bor.borrowCount,bor.state FROM books b INNER JOIN Borrow bor ON b.ISBN = bor.ISBN WHERE bor.readerID = '"+ReaderId+"' AND b.bookname LIKE ?"; Bfcon.statement=Bfcon.connection.prepareStatement(sql); Bfcon.statement.setString(1, "%"+BookName+"%"); Bfcon.resultSet=Bfcon.statement.executeQuery(); while(Bfcon.resultSet.next()){ bf =new BForm(); bf.setB_isbn(Bfcon.resultSet.getString("ISBN")); bf.setB_name(Bfcon.resultSet.getString("bookname")); bf.setJy_id(Bfcon.resultSet.getString("staffID")); bf.setJy_date(Bfcon.resultSet.getString("borrowDate")); bf.setJy_count(Bfcon.resultSet.getInt("borrowCount")); System.out.println(Bfcon.resultSet.getString("state")); if(Bfcon.resultSet.getInt("state")==0){ bf.setIs_gh("是"); }else if(Bfcon.resultSet.getInt("state")==1){ bf.setIs_gh("否"); } bList.add(bf); } } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ Bfcon.close(); } //创建一条通路 return bList; }
这段代码是一个用来查询读者借阅图书信息的函数,通过输入读者的 ID 和图书名称来查询借阅的图书信息。在 SQL 语句中使用了 INNER JOIN 连接 Borrow 表和 Books 表,查询出符合条件的借阅记录,并且按照图书名称模糊匹配查询结果。查询结果包括 ISBN 号码、图书名称、借阅工作人员 ID、借阅日期、借阅数量和归还状态。如果归还状态为 0,表示已经归还,为 1 表示未归还。最后将查询结果存储在 BForm 类的实例中,并且添加到集合中返回。同样地,代码中也使用了 JDBC 连接数据库,并且需要注意关闭连接。
阅读全文