首页>代码>jsp+servlet+原生jdbc实现的停车场管理系统分享>/park/src/main/java/cn/parking/DAO/Message.java
package cn.parking.DAO;
import cn.parking.DBUtil.SQLUtil;
import java.util.List;

/*
 * @Author:cxs
 * @Date:2020/12/26  16:10
 * @Version 1.0
 * */
public class Message {
    //添加留言
    public int addmessage(String user_id,String text){
        String sqlCmd = "insert into message values(null,'"+user_id+"','"+text+"')";
        return SQLUtil.executeNonQuery(sqlCmd, null);
    }
    //修改留言
    public int updatemessage(int message_id,String text){
        String sqlCmd = "update message set text = '"+text+"' where message_id = '"+message_id+"'";
        return SQLUtil.executeNonQuery(sqlCmd, null);
    }
    //删除留言
    public int deletebyid(int message_id){
        String sqlCmd = "delete from message where message_id = '"+message_id+"'";
        return SQLUtil.executeNonQuery(sqlCmd, null);
    }
    //查询留言
    public List<Object> queryall(){
        String sqlCmd = "select *from message";
        return SQLUtil.executeQuery(sqlCmd, null);
    }
    //根据id查询
    public List<Object> queryallbyid(int id){
        String sqlCmd = "select *from message where message_id = '"+id+"'";
        return SQLUtil.executeQuery(sqlCmd, null);
    }
}
最近下载更多
shunlun8855  LV1 10月15日
wanglinddad  LV55 4月8日
zolscy  LV12 3月24日
huangzy  LV12 2023年12月13日
另类清晨  LV8 2023年9月22日
komice1992  LV3 2023年7月1日
hongdongdong  LV14 2023年6月17日
lvdong2023  LV10 2023年5月17日
1613619109  LV6 2023年5月2日
全栈小白  LV35 2023年4月25日
最近浏览更多
shunlun8855  LV1 10月14日
15719908287  LV9 9月27日
绝对零度  LV4 8月23日
ma406805131  LV15 6月18日
kkKKKKp 6月11日
暂无贡献等级
80730176  LV7 4月20日
wanglinddad  LV55 4月2日
YiMoWanXia 3月25日
暂无贡献等级
zolscy  LV12 3月24日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友