快速业务通道

简单的struts应用开发(3) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15

简单的struts应用开发(3)

时间:2011-08-05

第四步:建立数据库操作对象 (完成对表的增删修改与查询)

package mystruts; import Java.sql.*; import ConnectionPool.*; import java.util.*; public class userdao { getDbConnection db=null; Connection con=null; public userdao() { } //------------------------------------------------------------------- public void userInsert(userActionForm uaf1) { db=new getDbConnection(); con=db.getCon(); userActionForm uaf=uaf1; PreparedStatement ps = null; String sql="insert into myuser (user_id,user_name,dep,tel) values(?,?,?,?)"; try { ps = con.prepareStatement(sql); ps.setString(1,uaf.getUser_id()); ps.setString(2,uaf.getUser_name()); ps.setString(3,uaf.getDep()); ps.setString(4,uaf.getTel()); ps.executeUpdate(); } catch (SQLException e) { System.out.println("sql error"); } finally { try{ con.close(); db.d_close(); } catch(Exception e) {} } } //--------------------------------------------- public void userUpdate(userActionForm uaf1) { db=new getDbConnection(); con=db.getCon(); userActionForm uaf=uaf1; PreparedStatement ps = null; String sql="update myuser set user_name=?,dep=?,tel=? where user_id=?"; try { ps = con.prepareStatement(sql); ps.setString(1,uaf.getUser_name()); ps.setString(2,uaf.getDep()); ps.setString(3,uaf.getTel()); ps.setString(4,uaf.getUser_id()); ps.executeUpdate(); } catch (SQLException e) { System.out.println("sql error"); } finally { try{ con.close(); db.d_close(); } catch(Exception e) {} } } //--------------------------------------------- public userActionForm getUser(String key) { db=new getDbConnection(); con=db.getCon(); ResultSet rs=null; userActionForm uaf=new userActionForm(); PreparedStatement ps = null; String sql="select * from myuser where user_id=?"; try { ps = con.prepareStatement(sql); ps.setString(1,key.trim()); rs=ps.executeQuery(); if(rs.next()) { uaf.setUser_id(rs.getString("user_id")); uaf.setUser_name(rs.getString("user_name")); uaf.setDep(rs.getString("dep")); uaf.setTel(rs.getString("tel")); uaf.setAction("edit"); } } catch (SQLException e) { System.out.println("sql error"); } finally { try{ con.close(); db.d_close(); } catch(Exception e) {} } System.out.println("mod"+key); return uaf; } //---------------------------------------- public void delUser(String key) { db=new getDbConnection(); con=db.getCon(); PreparedStatement ps = null; String sql="delete from myuser where user_id=?"; try { ps = con.prepareStatement(sql); ps.setString(1,key.trim()); ps.executeUpdate(); } catch (SQLException e) { System.out.println("sql error"); } finally { try{ con.close(); db.d_close(); } catch(Exception e) {} } System.out.println("del"+key); } //---------------------------------- public Collection getAlluser() { db=new getDbConnection(); con=db.getCon(); ResultSet rs=null; userActionForm uaf=new userActionForm(); PreparedStatement ps = n

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号