当前位置: 技术问答>java相关
求救!求救!紧急求救!为什么更新不了所指定的内容?
来源: 互联网 发布时间:2015-08-30
本文导语: ResultSet result=stmt.executeQuery("select * from table"); int rowCount=result.getRow(); PreparedStatement pstmt=con.PrepareStatement("update table set 姓名=?,电话=?"); if(rowCount==1){ pstmt.setString(1,jTextField1.getText()); pstmt.setString(2,jTextField2.getText()); JO...
ResultSet result=stmt.executeQuery("select * from table");
int rowCount=result.getRow();
PreparedStatement pstmt=con.PrepareStatement("update table set 姓名=?,电话=?");
if(rowCount==1){
pstmt.setString(1,jTextField1.getText());
pstmt.setString(2,jTextField2.getText());
JOptionPane.showMessageDialog(this,"更新成功","更新对话框",JOptionPane.PLSN_MESSAGE);
}else{
JOptionPane.showMessageDialog(this,"更新失败","更新对话框",JOptionPane.PLSN_MESSAGE);
更新数据时总是提示错误,不知道是为什么,是不是所指定的一行并不是查询的那一行呀?请各位高手指点一二。谢谢!(注意:由于本人太笨,上面程序有些代码可能不正确,请大家原谅,我只想知道怎么样才能更新指定的一行数据)。
int rowCount=result.getRow();
PreparedStatement pstmt=con.PrepareStatement("update table set 姓名=?,电话=?");
if(rowCount==1){
pstmt.setString(1,jTextField1.getText());
pstmt.setString(2,jTextField2.getText());
JOptionPane.showMessageDialog(this,"更新成功","更新对话框",JOptionPane.PLSN_MESSAGE);
}else{
JOptionPane.showMessageDialog(this,"更新失败","更新对话框",JOptionPane.PLSN_MESSAGE);
更新数据时总是提示错误,不知道是为什么,是不是所指定的一行并不是查询的那一行呀?请各位高手指点一二。谢谢!(注意:由于本人太笨,上面程序有些代码可能不正确,请大家原谅,我只想知道怎么样才能更新指定的一行数据)。
|
你想修改的记录应该是满足一定条件的吧?例如这样:
ResultSet result=stmt.executeQuery("select * from table where 姓名= '王伟韬'");
if(result.next()){
result.setString(1,jTextField1.getText());
result.setString(2,jTextField2.getText());
JOptionPane.showMessageDialog(this,"更新成功","更新对话框",JOptionPane.PLSN_MESSAGE);
}
else
JOptionPane.showMessageDialog(this,"更新失败","更新对话框",JOptionPane.PLSN_MESSAGE);
ResultSet result=stmt.executeQuery("select * from table where 姓名= '王伟韬'");
if(result.next()){
result.setString(1,jTextField1.getText());
result.setString(2,jTextField2.getText());
JOptionPane.showMessageDialog(this,"更新成功","更新对话框",JOptionPane.PLSN_MESSAGE);
}
else
JOptionPane.showMessageDialog(this,"更新失败","更新对话框",JOptionPane.PLSN_MESSAGE);