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

WEB邮件程序

开发平台:

Java

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