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

WEB邮件程序

开发平台:

Java

  1. package com.softeem.webmail.sendbox;
  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 DeleteMail {
  7. public void delete(int id){
  8. Connection con = DBManager.getConnection();
  9. String sql = "delete from mail where id = ?";
  10. try {
  11. PreparedStatement ps = con.prepareStatement(sql);
  12. ps.setInt(1, id);
  13. ps.execute();
  14. } catch (SQLException e) {
  15. e.printStackTrace();
  16. }finally{
  17. DBManager.closeConnection(null, null, con);
  18. }
  19. }
  20. }