Delete.java
上传用户:liangcc
上传日期:2019-05-24
资源大小:4412k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

Java

  1. package com.softeem.webmail.dao.folder;
  2. import java.sql.Connection;
  3. import java.sql.PreparedStatement;
  4. import java.sql.SQLException;
  5. import com.softeem.webmail.dao.DBManager;
  6. public class Delete {
  7. private Connection conn;
  8. private PreparedStatement ps;
  9. public void deleteBoxByName(String sql){
  10. System.out.println(sql);
  11. conn = DBManager.getConnection();
  12. // String sql = "delete from mail where box_name = ? and ";
  13. try {
  14. ps = conn.prepareStatement(sql);
  15. // ps.setString(1, boxname);
  16. ps.executeUpdate();
  17. } catch (SQLException e) {
  18. e.printStackTrace();
  19. }finally{
  20. DBManager.closeConnection(null, ps, conn);
  21. }
  22. }
  23. }