当前位置: 技术问答>java相关
数据库更新的问题
来源: 互联网 发布时间:2015-06-26
本文导语: 下面的代码为什么更新不成功 sql="update clientmsg set clientpassword='"+newPW+"'"+ " where clientname='"+userName+"'"+" and clientpassword='"+oldPW+"'"; System.out.println(sql); ...
下面的代码为什么更新不成功
sql="update clientmsg set clientpassword='"+newPW+"'"+
" where clientname='"+userName+"'"+" and clientpassword='"+oldPW+"'";
System.out.println(sql);
stmt = conn.createStatement();
success = stmt.executeUpdate(sql);
stmt.close();
其中newPW,oldPW,userName为变量
执行结果修改数据库失败,不知道如何才能成功
sql="update clientmsg set clientpassword='"+newPW+"'"+
" where clientname='"+userName+"'"+" and clientpassword='"+oldPW+"'";
System.out.println(sql);
stmt = conn.createStatement();
success = stmt.executeUpdate(sql);
stmt.close();
其中newPW,oldPW,userName为变量
执行结果修改数据库失败,不知道如何才能成功
|
加一个con.commit();