package com.wy.dao; import java.sql.*; import java.util.*; import com.wy.tool.JDBConnection; import com.wy.domain.LinkForm; //对友情连接网站表的操作 public class LinkDao { private Connection connection = null; //定义连接的对象 private PreparedStatement ps = null; //定义预准备的对象 private JDBConnection jdbc = null; //定义数据库连接对象 public LinkDao() { jdbc = new JDBConnection(); connection = jdbc.connection; //利用构造方法取得数据库连接 } //删除的方法 public void deleteLink(Integer id) { try { ps = connection.prepareStatement("delete from tb_link where id=?"); ps.setInt(1, id.intValue()); ps.executeUpdate(); ps.close(); } catch (SQLException ex) { ex.printStackTrace(); } } //添加的方法 public void insertLink(LinkForm form) { try { ps = connection.prepareStatement("insert into tb_link values (null,?,?)"); ps.setString(1, form.getLinkName()); ps.setString(2, form.getLinkAddress()); ps.executeUpdate(); ps.close(); } catch (SQLException ex) { ex.printStackTrace(); } } //全部查询的方法 public List selectLink() { List list = new ArrayList(); LinkForm link = null; try { ps = connection.prepareStatement("select * from tb_link order by id DESC"); ResultSet rs = ps.executeQuery(); while (rs.next()) { link = new LinkForm(); link.setId(Integer.valueOf(rs.getString(1))); link.setLinkName(rs.getString(2)); link.setLinkAddress(rs.getString(3)); list.add(link); } } catch (SQLException ex) { ex.printStackTrace(); } return list; } }

sunshine255 LV5
2022年4月30日
lzlzyw LV14
2022年3月24日
1487878315 LV10
2021年11月29日
夏未尽花已落 LV1
2020年6月14日
12385522272 LV4
2020年4月28日
hancro LV5
2020年3月11日
sunskyasd LV6
2019年12月18日
528679484 LV5
2019年10月23日
caifangfang LV5
2019年6月25日
itscod LV6
2019年6月16日