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

Java编程

开发平台:

Java

  1. package StudyNote;
  2. import java.util.*;
  3. import java.sql.Connection;
  4. import java.sql.ResultSet;
  5. public class Dep {  
  6. private int id = 0;
  7. private String name = null;
  8.  
  9. public Dep(){}
  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 DepList = new Vector();
  26. ResultSet rs;
  27.         String strSql=null;
  28.         strSql = "select * from dep ";
  29.         
  30. rs = db.OpenSql(strSql);
  31. while  (rs.next()){
  32. Dep dep = new Dep();
  33. dep.setId(rs.getInt("id")) ;
  34. dep.setName(rs.getString("depname")) ;
  35. DepList.add(dep);
  36. }
  37. return DepList;
  38. }
  39. }