代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
添加、删除、修改、查询的四个基本方法
作者:
dezai
/ 发布于
2014/2/26
/
774
添加、删除、修改、查询的四个基本方法
/** * 添加 */ public boolean add(Msg obj){ Connection con=DBConnection.getConnction(); PreparedStatement ps = null ; boolean bret=false; try{ ps=con.prepareStatement("insert into msgInfo (privyName,telphone,msgContent,)values(?,?,?)"); //System.out.print(obj.getPrivyName()); ps.setString(1,obj.getPrivyName()); ps.setString(2, obj.getTelphone()); ps.setString(3,obj.getMsgContent()); int i = ps.executeUpdate(); if(i>0){ bret=true; } }catch(Exception e){ System.out.println(e.getMessage()); }finally{ try{ if(ps!=null)ps.close(); if(con!=null)con.close(); }catch(Exception e2){ System.out.println(e2.getMessage()); } } return bret; } /** * 查询所有 */ public List getAllMsg(String userID){//用util的List Connection con=DBConnection.getConnction(); ArrayList al = new ArrayList(); PreparedStatement ps = null ; try { ps=con.prepareStatement("select * from msgInfo where userID=? order by msgID desc"); ps.setString(1,userID); ResultSet rs=ps.executeQuery(); while(rs.next()){ Msg bean=new Msg(); bean.setMsgID(Integer.toString(rs.getInt(1))); bean.setPrivyName(rs.getString(2)); bean.setTelphone(rs.getString(3)); bean.setMsgContent(rs.getString(4)); al.add(bean); } }catch(Exception e){ System.out.println(e.getMessage()); }finally{ if (con != null) try { ps.close(); con.close(); } catch (SQLException e) { System.out.println(e.getMessage()); } } return al; } /** * 查询一条记录 */ public List getOneMsg(String msgID){//用util的List Connection con=DBConnection.getConnction(); ArrayList al = new ArrayList(); PreparedStatement ps = null ; try { ps=con.prepareStatement("select * from msgInfo where msgID=?"); ps.setString(1,msgID); ResultSet rs=ps.executeQuery(); while(rs.next()){ Msg bean=new Msg(); bean.setPrivyName(rs.getString(2).trim()); bean.setTelphone(rs.getString(3).trim()); bean.setMsgContent(rs.getString(4).trim()); al.add(bean); } }catch(Exception e){ System.out.println(e.getMessage()); }finally{ if (con != null) try { ps.close(); con.close(); } catch (SQLException e) { System.out.println(e.getMessage()); } } return al; } /** * 删除 */ public boolean removeMsg(String msgID){ Connection con=DBConnection.getConnction(); PreparedStatement ps = null ; boolean bret=false; try{ ps=con.prepareStatement("delete msgInfo where msgID=?"); ps.setString(1,msgID); int i = ps.executeUpdate(); if(i>0){ bret=true; } }catch(Exception e){ System.out.println(e.getMessage()); }finally{ try{ if(ps!=null)ps.close(); if(con!=null)con.close(); }catch(Exception e2){ System.out.println(e2.getMessage()); } } return bret; } /** * 修改 */ public boolean ModifyMsg(Msg obj){ Connection con=DBConnection.getConnction(); PreparedStatement ps = null ; boolean bret=false; try{ ps=con.prepareStatement("Update msgInfo set privyName=?,telphone=?,msgContent=?"); ps.setString(1, obj.getPrivyName()); ps.setString(2, obj.getTelphone()); ps.setString(3, obj.getMsgContent()); int i = ps.executeUpdate(); if(i>0){ bret=true; } }catch(Exception e){ System.out.println(e.getMessage()); }finally{ try{ if(ps!=null)ps.close(); if(con!=null)con.close(); }catch(Exception e2){ System.out.println(e2.getMessage()); } } return bret; } /** * 得到总记录条数 */ public int getRows(String userID){ Connection con=DBConnection.getConnction(); PreparedStatement ps = null ; int row=0; try { ps=con.prepareStatement("select count(*) from msgInfo where userID=?"); ps.setString(1,userID); ResultSet rs=ps.executeQuery(); if(rs.next()){ row=rs.getInt(1); } //System.out.println(row); } catch(Exception e){ row=0; } return row; }
试试其它关键字
增删查改
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3