package com.wy.dao; import java.sql.ResultSet; import java.sql.SQLException; import java.util.*; import com.wy.form.FriendForm; import com.wy.tool.JDBConnection; public class FriendDao { private JDBConnection connection = null; public FriendDao() { connection = new JDBConnection(); } // 修改朋友 public boolean updateFriend(FriendForm form) { boolean flag = false; String sql = "update tb_friend set name='" + form.getName() + "',QQNumber='" + form.getQQNumber() + "',description='" + form.getDescription() + "' where id='" + form.getId() + "'"; if (connection.executeUpdate(sql)) { flag = true; } return flag; } // 添加朋友 public boolean addFriend(FriendForm form) { boolean flag = false; String sql = "insert into tb_friend values ("+(int)Math.random()*99999999+",'" + form.getName() + "','" + form.getQQNumber() + "','" + form.getDescription() + "')"; if (connection.executeUpdate(sql)) { flag = true; } return flag; } // 删除朋友 public boolean deleteFriend(Integer id) { boolean flag = false; String sql = "delete from tb_friend where id='" + id + "'"; if (connection.executeUpdate(sql)) { flag = true; } return flag; } // 查询所有朋友 public List queryFriend() { List list = new ArrayList(); FriendForm form = null; String sql = "select * from tb_friend"; ResultSet rs = connection.executeQuery(sql); try { while (rs.next()) { form = new FriendForm(); form.setId(Integer.valueOf(rs.getString(1))); form.setName(rs.getString(2)); form.setQQNumber(rs.getString(3)); form.setDescription(rs.getString(4)); list.add(form); } } catch (SQLException e) { e.printStackTrace(); } return list; } // 单独朋友信息查询 public FriendForm queryFriendForm(String id) { FriendForm form = null; String sql = "select * from tb_friend where id='" + id + "'"; ResultSet rs = connection.executeQuery(sql); try { while (rs.next()) { form = new FriendForm(); form.setId(Integer.valueOf(rs.getString(1))); form.setName(rs.getString(2)); form.setQQNumber(rs.getString(3)); form.setDescription(rs.getString(4)); } } catch (SQLException e) { e.printStackTrace(); } return form; } }

ma406805131 LV19
2024年12月19日
hulewang LV8
2024年10月12日
无名氏111 LV33
2024年6月24日
sz1111111 LV2
2024年3月26日
寒江雪2017 LV10
2024年1月23日
李朝磊 LV18
2024年1月6日
pangzhihui LV14
2023年12月27日
wanglongfei2 LV2
2023年6月15日
13133117021 LV5
2023年5月31日
ewan007 LV30
2023年3月13日

ma406805131 LV19
2024年12月19日
lyh1989 LV34
2024年12月11日
hulewang LV8
2024年10月12日
yellow_flowers LV8
2024年7月9日
无名氏111 LV33
2024年6月24日
sz1111111 LV2
2024年3月26日
寒江雪2017 LV10
2024年1月23日
duoduo1234 LV2
2024年1月15日
taoshen95 LV16
2024年1月11日
wttttts LV2
2024年1月1日