分享

jsp调用MYSQL存储过程 -冰山上的来客-搜狐博客

 BigGuo 2010-03-07

2007-09-19 | jsp调用MYSQL存储过程

分享
MYSQL
DELIMITER $$
DROP PROCEDURE IF EXISTS `freewap`.`add_user` $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `add_user`(
 IN name TEXT,
        IN pwd TEXT,
        IN email TEXT,
 IN qq TEXT,
  IN birthday DATE,
  IN sex tinyint,
 IN pwdquestion TEXT,
 IN pwdanswer TEXT,
 IN firstpwd TEXT
 )
BEGIN
    INSERT INTO `tbl_user`(u_name, u_pwd, u_email, u_qq, u_birthday, u_sex, u_pwdquestion, u_pwdanswer, u_firstpwd)
    VALUES (name,pwd,email,qq,birthday,sex,pwdquestion,pwdanswer,firstpwd);
  END $$
DELIMITER ;
 
 
JSP代码片断:
 private  CallableStatement cStmt = null;
//调用存储过程查询,需要返回查询结果

 public ResultSet callQuery (String proc)
 {
  rs=null;
  try{
      cStmt=conn.prepareCall("CALL "+proc +";",ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      rs=cStmt.executeQuery();
  }
  catch (SQLException ex)
  {
   System.err.println("DAO.DBBean.executeQuery() ERR :"+ex.getMessage());
  }
  return rs;
 }
 
 //调用存储过程更新,不需要返回
 public void callUpdate (String proc)
 {
  rs=null;
  stmt=null;
  try{
   System.out.println("{CALL "+proc+"}");
   cStmt=conn.prepareCall("{CALL "+proc+"}");
   cStmt.execute();
  }
  catch (SQLException ex)
  {
   System.err.println("DAO.DBBean.callUpdate() ERR :"+ex.getMessage());
  }
 }
 
//插入数据。添加用户,在注册时使用
 public void addUser(UserBean user) throws SQLException {
  DBBean dbbean = new  DBBean();
  dbbean.openConn();
  try
     {
   StringBuffer sql = new StringBuffer();
       sql = new StringBuffer("add_user(");
       sql.append("'" + user.getU_name() + "',");
       StrEncrypt strencrypt=new StrEncrypt();
       sql.append("'" + strencrypt.EncryptStr(user.getU_pwd()) + "',");
       sql.append("'" + user.getU_email() + "',");
       sql.append("'" + user.getU_qq() + "',");
       sql.append("'" + new java.sql.Date(user.getU_birthday().getTime()) + "',");
       sql.append("" + user.getU_sex() + ",");
       sql.append("'" + user.getU_pwdquestion() + "',");
       sql.append("'" + user.getU_pwdanswer() + "',");
       sql.append("'" + user.getU_pwd() + "'");
       sql.append(")");
       dbbean.callUpdate(sql.toString());
     }
     catch (Exception sqle)
     {
         sqle.printStackTrace();
     }
     finally
     {
      dbbean.closeCall();
     }
   }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多