我正在做更改密码我需要更新旧密码。基于旧密码,我需要获取记录,然后更新记录,但这是问题,当我得到记录,我试图更新它显示消息中的空
我的代码:
public String ResetPwd(String NewPwd, String name,String oldpwd)
{
String Pass="Select * from Users where Password='"+oldpwd+"' and UserId='"+name+"'";
String UpdateQuery="update Users set Password='"+NewPwd+"' where UserId='"+name+"'";
try{
currentCon = ConnectionManager.getConnection();
st=currentCon.createStatement();
rs = st.executeQuery(Pass);
if(rs.next())
{
PreparedStatement ps=currentCon.prepareStatement(UpdateQuery);
int i=ps.executeUpdate();
ps.close();
if(i>=1)
{
msg="Password Changed Successfully";
}
}
else{
msg="Old Password Not Match Please Enter Correct Password..!";
return msg;
}
}catch(Exception ex){}
return msg;
}
答案 0 :(得分:1)
msg
为null,因为可能会抛出一些异常并且它不会设置为任何异常。正如@ CraigR8806所说的那样,不要忽略你捕获的例外情况,至少打印它们。
由于您正在呼叫,因此引发的异常可能是SQLException
在这一点上已经关闭的preparedStatament上的executeUpdate
PreparedStatement ps=currentCon.prepareStatement(UpdateQuery);
ps.executeUpdate();
ps.close();
int i=ps.executeUpdate();
ps.close();
由于没有理由再次将其更改为:
PreparedStatement ps=currentCon.prepareStatement(UpdateQuery);
int i=ps.executeUpdate();
ps.close();
作为旁注,请尝试使用资源,因为它有助于关闭这些资源