📄 dbfroum.java~20~
字号:
package com.bwm.database;import java.sql.*;import java.util.*;import javax.servlet.http.HttpServletRequest;import com.bwm.model.Froum;import com.bwm.core.*;/** * <p>Title: mingrisoft</p> * <p>Description: 明日科技门户网站</p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: MR</p> * @author BWM * @version 1.0 */public class Dbfroum extends Froum { public Dbfroum() { } public Dbfroum(String sql) { Connection con = null; PreparedStatement ps = null; ResultSet rs = null; try { con = Database.getConnection(); ps = con.prepareStatement(FinalConstants.SELECT_LINK + sql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); rs = ps.executeQuery(); if (rs.next()) { f.setLid(rs.getInt("lid")); f.setName(ParamUtils.getSqlString(rs.getString("name"))); f.setLtime(ParamUtils.getSqlString(rs.getString("ltime"))); f.setUrl(ParamUtils.getSqlString(rs.getString("url"))); } } catch (SQLException e) { System.out.println(e.getMessage()); e.printStackTrace(); } finally { System.out.println(ps + " Dblink(String sql) " + l.getLid()); try { if (ps != null) { ps.close(); ps = null; } } catch (SQLException e) { ps = null; } try { if (con != null) { con.close(); con = null; } } catch (SQLException e) { con = null; } } } public Dbfroum(HttpServletRequest request) { l.setName(ParamUtils.getRequestString(request, "name")); l.setUrl(ParamUtils.getRequestString(request, "url")); } public boolean Insert() { boolean b = false; Connection con = null; PreparedStatement ps = null; try { con = Database.getConnection(); ps = con.prepareStatement(FinalConstants.INSERT_LINK); ps.setString(1, l.getName()); ps.setString(2, l.getUrl()); if (ps.executeUpdate() > 0) { b = true; } else { b = false; } } catch (SQLException e) { b = false; System.out.println(e.getMessage()); e.printStackTrace(); } finally { System.out.println(ps + " Dblink.Insert()"); try { if (ps != null) { ps.close(); } } catch (SQLException e) { ps = null; } try { if (con != null) { con.close(); } } catch (SQLException e) { con = null; } } return b; } public Collection Select(String sql) { Collection coll = new ArrayList(); Connection con = null; ResultSet rs = null; PreparedStatement ps = null; try { con = Database.getConnection(); ps = con.prepareStatement(FinalConstants.SELECT_LINK + sql); rs = ps.executeQuery(); while (rs.next()) { Link link = new Link(); link.setLid(rs.getInt("lid")); link.setName(ParamUtils.getSqlString(rs.getString("name"))); link.setLtime(ParamUtils.getSqlString(rs.getString("ltime"))); link.setUrl(ParamUtils.getSqlString(rs.getString("url"))); coll.add(link); } } catch (SQLException ex) { System.out.println(ex.getMessage()); } finally { System.out.println(ps + " Dblink.Select(String sql) "); try { if (ps != null) { ps.close(); ps = null; } } catch (SQLException e) { ps = null; } try { if (con != null) { con.close(); con = null; } } catch (SQLException e) { con = null; } } return coll; } //页数+SQL条件 public Collection Select(int page, String sql) { Collection coll = new ArrayList(); Connection con = null; ResultSet rs = null; PreparedStatement ps = null; int tip = FinalConstants.STEP * (page - 1); try { con = Database.getConnection(); ps = con.prepareStatement(FinalConstants.SELECT_LINK + sql); rs = ps.executeQuery(); if (tip <= 0) { rs.beforeFirst(); } else { if (!rs.absolute(tip)) { rs.beforeFirst(); } } for (int i = 1; rs.next() && i <= FinalConstants.STEP; i++) { Link link = new Link(); link.setLid(rs.getInt("lid")); link.setName(ParamUtils.getSqlString(rs.getString("name"))); link.setLtime(ParamUtils.getSqlString(rs.getString("ltime"))); link.setUrl(ParamUtils.getSqlString(rs.getString("url"))); coll.add(link); } } catch (SQLException ex) { System.out.println(ex.getMessage()); } finally { System.out.println(ps + " Dblink.Select(int page,String sql) "); try { if (ps != null) { ps.close(); ps = null; } } catch (SQLException e) { ps = null; } try { if (con != null) { con.close(); con = null; } } catch (SQLException e) { con = null; } } return coll; } private boolean Update() { boolean b = false; Connection con = null; PreparedStatement ps = null; try { con = Database.getConnection(); ps = con.prepareStatement(FinalConstants.UPDATE_LINK); ps.setString(1, l.getName()); ps.setString(2, l.getUrl()); ps.setInt(3, l.getLid()); if (ps.executeUpdate() > 0) { b = true; } else { b = false; } } catch (SQLException e) { b = false; e.printStackTrace(); } finally { System.out.println(ps + " Dblink.Update() "); try { if (ps != null) { ps.close(); } } catch (SQLException e) { ps = null; } try { if (con != null) { con.close(); } } catch (SQLException e) { con = null; } } return b; } private Froum f=new Froum(); public int getFid() { return f.getFid(); } public void setFid(int fid) { f.setFid(fid); } public int getFsid() { return f.getFsid(); } public void setFsid(int fsid) { f.setFsid(fsid); } public String getTitle() { return f.getTitle(); } public void setTitle(String title) { f.setTime(title); } public String getUid() { return f.getUid(); } public void setUid(String uid) { f.setUid(uid); } public String getTime() { return f.getTime(); } public void setTime(String time) { f.setTime(time); } public String getContent() { return f.getContent(); } public void setContent(String content) { f.setContent(content); } public int getRenum() { return f.getRenum(); } public void setRenum(int renum) { f.setRenum(renum); } public int getHitnum() { return f.getHitnum(); } public void setHitnum(int hitnum) { f.setHitnum(hitnum); } public int getState() { return f.getState(); } public void setState(int state) { f.setState(state); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -