BookCat.java
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package BookStore;
  2. import java.util.*;
  3. import java.sql.Connection;
  4. import java.sql.ResultSet;
  5. public class BookCat {  
  6. private int id = 0;
  7. private String name = null;
  8.  
  9. public BookCat(){}
  10. public void setId(int id) {
  11. this.id = id;
  12. }
  13.   
  14. public int getId() {
  15. return id;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20.   
  21. public String getName() {
  22. return name;
  23. }
  24. public static Vector Search(DB db) throws Exception{
  25. Vector catList = new Vector();
  26. ResultSet rs;
  27.         String strSql=null;
  28.         strSql = "select * from bookcat ";
  29.         
  30. rs = db.OpenSql(strSql);
  31. while  (rs.next()){
  32. BookCat bookCat = new BookCat();
  33. bookCat.setId(rs.getInt("id")) ;
  34. bookCat.setName(rs.getString("catname")) ;
  35. catList.add(bookCat);
  36. }
  37. return catList;
  38. }
  39. public static int GetFirstBookCat(DB db) throws Exception{
  40. ResultSet rs;
  41.         String strSql=null;
  42.         
  43.         strSql = "select * from bookcat";
  44. rs = db.OpenSql(strSql);
  45. if (rs.next()){
  46. return rs.getInt("id");
  47. }
  48. else
  49. return 0;
  50. }
  51. }