public Connection executeUpdate() {
long start = System.currentTimeMillis();
try {
this.logExecution();
PreparedStatement statement = this.buildPreparedStatement();
this.connection.setResult(statement.executeUpdate());
this.connection.setKeys(this.returnGeneratedKeys ? statement.getGeneratedKeys() : null);
this.connection.setCanGetKeys(this.returnGeneratedKeys);
} catch (SQLException var7) {
this.connection.onException();
throw new Sql2oException("Error in executeUpdate, " + var7.getMessage(), var7);
} finally {
this.closeConnectionIfNecessary();
}
long end = System.currentTimeMillis();
logger.debug("total: {} ms; executed update [{}]", new Object[]{end - start, this.getName() == null ? "No name" : this.getName()});
return this.connection;
}
我想知道如何测试更新失败。我正在使用的查询是:
update my_table set some_field=:some_value
where the_key = :the_key_value
而且,在executeUpdate()
运行之前,我正在删除the_key == "the_key_value"
处的记录。
有人知道正确的方法来确定更新是否失败吗?
此外,当我转到javadoc并单击任何内容时,我会得到:
未找到CDN对象-请求ID:c6a9ba5f-f8ea-46ae-bf7a-efc084971878-19055563
有没有一种在本地构建javadoc的方法?
编辑:是通过使用Connection.getResult()
来检查这一点的方法吗?它是否返回已更新/插入的记录数?
答案 0 :(得分:0)
我去了RTFM,它解释了如何做到这一点。