gpt4 book ai didi

java - 无法在 java servlet 中执行更新查询

转载 作者:行者123 更新时间:2023-11-30 06:42:27 25 4
gpt4 key购买 nike

我正在更改密码,我需要更新旧密码。基于旧密码,我需要获取记录,然后更新记录,但这是当我获取记录时出现的问题,我尝试更新它在消息中显示空

我的代码:

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;
}

最佳答案

msg 为 null,因为可能抛出了一些异常并且它没有设置为任何内容。正如 @CraigR8806 所说,不要只是忽略捕获的异常,而是至少打印它们。

引发的异常可能是SQLException,因为您正在调用此时对已经关闭的preparedStatament执行Update

            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();

作为旁注,请使用 try 与资源,因为它有助于关闭这些资源

关于java - 无法在 java servlet 中执行更新查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44201551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com