JdbcHelper.java(JAVA连接数据库后的备忘录的增删改查)

package com.lw.dao;


import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;


import com.lw.bean.MemoBean;


public class JdbcHelper implements JdbcConfig {
    // 获得数据库的连接
    private static Connection getConnection() {
        Connection conn = null;
        try {
            Class.forName(DRIVER);// 加载数据库驱动
            conn = DriverManager.getConnection(URL, USERNAME, PASSWORD);// 获得数据库连接
            return conn;
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        return null;
    }
    
    // 增加备忘录
    public static int save(MemoBean memo) {
        String sql = "insert into tb_memo (username, title, content, memotype, memotime) values (?, ?, ?, ?, ?);";
        Connection conn = getConnection();
        PreparedStatement ps = null;
        try {
            ps = conn.prepareStatement(sql);
            ps.setString(1, memo.getUsername());
            ps.setString(2, memo.getTitle());
            ps.setString(3, memo.getContent());
            ps.setString(4, memo.getMemotype());
            ps.setString(5, memo.getMemotime());
            return ps.executeUpdate();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            if (ps != null) {
                try {
                    ps.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return -1;
    }
    
    // 修改备忘录
    public static int update(MemoBean memo) {
        String sql = "update tb_memo set username = ?, title = ?, content = ?, memotype = ?, memotime = ? where id = ?;";
        Connection conn = getConnection();
        PreparedStatement ps = null;
        try {
            ps = conn.prepareStatement(sql);
            ps.setString(1, memo.getUsername());
            ps.setString(2, memo.getTitle());
            ps.setString(3, memo.getContent());
            ps.setString(4, memo.getMemotype());
            ps.setString(5, memo.getMemotime());
            ps.setInt(6, memo.getId());
            return ps.executeUpdate();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            if (ps != null) {
                try {
                    ps.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return -1;
    }
    
    // 根据指定的条件查询并将结果保存在List中
    public static List<MemoBean> query(MemoBean memo) {
        String username = memo.getUsername();
        String title = memo.getTitle();
        String content = memo.getContent();
        String memotype = memo.getMemotype();
        String memotime = memo.getMemotime();
        
        StringBuilder sql = new StringBuilder("select * from tb_memo where 1=1 ");
        if (!username.isEmpty()) {
            sql.append(" and username like '%" + username + "%'  ");
        }
        if (!title.isEmpty()) {
            sql.append(" and title like '%" + title + "%'  ");
        }
        if (!content.isEmpty()) {
            sql.append(" and content like '%" + content + "%'  ");
        }
        if (!memotype.isEmpty()) {
            sql.append(" and memotype like '%" + memotype + "%'  ");
        }
        if (!memotime.isEmpty()) {
            sql.append(" and memotime like '%" + memotime + "%'  ");
        }
        sql.append(";");
        List<MemoBean> results = new ArrayList<MemoBean>();
        Connection conn = getConnection();
        Statement stat = null;
        ResultSet rs = null;
        try {
            stat = conn.createStatement();
            rs = stat.executeQuery(sql.toString());
            while (rs.next()) {
                MemoBean tempMemo = new MemoBean();
                tempMemo.setId(rs.getInt("id"));
                tempMemo.setUsername(rs.getString("username"));
                tempMemo.setTitle(rs.getString("title"));
                tempMemo.setContent(rs.getString("content"));
                tempMemo.setMemotype(rs.getString("memotype"));
                tempMemo.setMemotime(rs.getString("memotime"));
                results.add(tempMemo);
            }
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {// 释放资源
            if (rs != null) {
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (stat != null) {
                try {
                    stat.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return results;
    }
    
    // 查询备忘录中全部记录并转存到List中
    public static List<MemoBean> queryAll() {
        String sql = "select * from tb_memo;";
        List<MemoBean> results = new ArrayList<MemoBean>();
        Connection conn = getConnection();
        Statement stat = null;
        ResultSet rs = null;
        try {
            stat = conn.createStatement();
            rs = stat.executeQuery(sql);
            while (rs.next()) {
                MemoBean memo = new MemoBean();
                memo.setId(rs.getInt("id"));
                memo.setUsername(rs.getString("username"));
                memo.setTitle(rs.getString("title"));
                memo.setContent(rs.getString("content"));
                memo.setMemotype(rs.getString("memotype"));
                memo.setMemotime(rs.getString("memotime"));
                results.add(memo);
            }
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {// 释放资源
            if (rs != null) {
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (stat != null) {
                try {
                    stat.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return results;
    }
    
    // 删除备忘录
    
    public static int delete(MemoBean memo) {
        String sql = "delete from tb_memo where id = " + memo.getId();
        Connection conn = getConnection();
        Statement stat = null;
        try {
            stat = conn.createStatement();
            return stat.executeUpdate(sql);
            
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {// 释放资源
            if (stat != null) {
                try {
                    stat.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return -1;
    }
    
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值