executeUpdate(String sql)方法在语句类中使用具有ON DUPLICATE KEY UPDATE的



我正在执行一个插入查询在我的net beans java应用程序。

public boolean Update(){
    String sql="insert into customer(cNic,cName,cAddress,cTp,cEmail,creditLimit,CustomerStatus)"
            + "values('"+cs.getcNic()+"','"+cs.getcName()+"','"+cs.getcAddress()+"','"+cs.getcTp()+"'"
            + ",'"+cs.getcEmail()+"','"+cs.getCreditLimit()+"',0) "
          + "ON DUPLICATE KEY UPDATE cName=VALUES(cName), cAddress=VALUES(cAddress), "
            + "cTp=VALUES(cTp), cEmail=VALUES(cEmail), n" +
                "creditLimit=VALUES(creditLimit),CustomerStatus=0;";
    try {
        Statement stmt=dbConn.createStatement();
        int rslt =stmt.executeUpdate(sql);
        if(rslt==1){
            return true;
        }
        else{
            return false;
        }
    } 
    catch (SQLException ex) {
        JOptionPane.showMessageDialog(null, ex, "DB_CONNECTION ERROR", JOptionPane.ERROR_MESSAGE);
        return false;
    }
}

此方法适用于新行。但是当我添加一行(表中已经有一个主键)时,stmt.executeUpdate(sql)方法返回2。但是表格中的数据已经更新了。但是我无法查看插入是否成功。在正常情况下,如果执行成功,则返回1。是否有一种方法可以在net bean中执行此查询并知道它是否已正确更新?

首先请帮我一个忙,用PreparedStatement代替Statement

executeUpdate()-返回SQL数据操作语言(DML)语句的行数

method returns 2表示有两行受到影响

But I can't check whether the insertion has been done successfully

如果未插入,则返回0或抛出异常

你不需要将stmt.executeUpdate()函数保存为int类型。如果更新成功,它将工作,您可以返回true(假设您希望它返回true,如果它工作),否则,如果抛出异常,您的代码将导致catch子句,因此将返回false;

我建议你重写你的方法。我将用我的一段代码给你一个例子:

public boolean update(Long id) throws SQLException{
        Statement stmt = dbCon.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,     ResultSet.CONCUR_UPDATABLE);
       String allRoomsToArchive = String.format("Update Room SET "
                + "archive=1 WHERE building_id=%s;",id);
        stmt.executeUpdate(allRoomsToArchive);
// You always need to close your statements and connections, as for security reasons, and // also because sometimes, you will have too many connections, so that your query can not // be done. A connection does not automatically close after your statement has finished!
stmt.close();
dbCon.close();

}

这种方式的优点是,你可以从另一个方法调用你的更新方法,例如callUpdate(),并处理那里的异常。如果你必须做很多sql查询,你可以把它们放在一个队列中,并且只需要处理一次,就像这里一样,但如果它是你唯一的一个,它看起来更流畅:

public boolean callUpdate(){

try{
 update();
 // update2();
 // update3();
 return true;
}catch(SQLException e){
 System.out.println(e.toString());
 return false;
}
}

相关内容

  • 没有找到相关文章

最新更新