通过以下代码段,我尝试运行一个查询,该查询要么更新数据,要么将新数据插入名为JustPinged
. 该表包含一个名为NodesThatJustPinged
and的列LastPingedAt
。如果已经有一个节点,则更新NodesThatJustPinged
以毫秒为单位的时间。LastPingedAt
否则node
插入新信息。
问题是,以下代码段无法将数据插入到数据库的表中。原因是声明:
boolean duplicateExists = searchToEliminateDuplicates.execute();
返回true
开始。(最初表是空的)为什么这个语句返回true?根据文档,如果第一个结果是 ResultSet 对象,则返回true;如果第一个结果是更新计数或没有结果,则返回 false。所以这里的布尔值应该包含一个假值。但它包含一个true
值,因此该if
语句始终有效。(在if
部分中,更新查询在没有任何更新时有效!)
String searchQuery = "select NodesThatJustPinged from JustPinged where NodesThatJustPinged = '" + nodeInfo + "'";
PreparedStatement searchToEliminateDuplicates = connection.prepareStatement(searchQuery);
boolean duplicateExists = searchToEliminateDuplicates.execute();
if(duplicateExists) {
// update the LastPingedAt column in the JustPinged table
String updateQuery = "update JustPinged set LastPingedAt='" + pingedAt + "' where NodesThatJustPinged = '" + nodeInfo + "'";
PreparedStatement updateStatement = connection.prepareStatement(updateQuery);
updateStatement.executeUpdate();System.out.println("If statement");
} else {
// make a new entry into the database
String newInsertionQuery = "insert into JustPinged values('" + nodeInfo + "','" + pingedAt + "')";
PreparedStatement insertionStatement = connection.prepareStatement(newInsertionQuery);
insertionStatement.executeUpdate();System.out.println("else statement");
}
那么我应该如何编辑代码,以便更新重复值并插入新值?