GoodTypemodel.java
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Java

  1. package com.center.control;
  2. import java.sql.Connection;
  3. import java.sql.PreparedStatement;
  4. import java.sql.ResultSet;
  5. import java.sql.SQLException;
  6. public class GoodTypemodel {
  7. private Connection conn;
  8. public GoodTypemodel(Connection conn) {
  9. // TODO Auto-generated constructor stub
  10. this.conn = conn;
  11. }
  12. public ResultSet showtype() {
  13. // TODO Auto-generated method stub
  14. PreparedStatement pre = null;
  15. ResultSet rs = null;
  16. String str = "select TYPE_NAME from goodtype where 1 = 1";
  17. try {
  18. pre = conn.prepareStatement(str);
  19. rs = pre.executeQuery();
  20. } catch (SQLException e) {
  21. // TODO Auto-generated catch block
  22. e.printStackTrace();
  23. }
  24. return rs;
  25. }
  26. public int addtype(String typename, String typetime) throws SQLException {
  27. // TODO Auto-generated method stub
  28. String addtype = "insert into goodtype(TYPE_NAME,TYPE_TIME) VALUE(?,?)";
  29. PreparedStatement pre = conn.prepareStatement(addtype);
  30. pre.setString(1, typename);
  31. pre.setString(2, typetime);
  32. int i = pre.executeUpdate();
  33. return i;
  34. }
  35. }