Insert or update table using JDBC
我有一些记录要导入。第一次插入时可以。如果我再次尝试导入相同的数据,我会收到org.postgresql.util.psqlException:错误:重复的键值违反了唯一约束。如果数据相同/或已更改,如何更新数据库中的记录,如果是使用JDBC的新数据,如何插入?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | public void store(Object entity) throws Exception { try { if (this.updateEntity((XEntity) entity) == 0) { this.insertEntity((XEntity) entity); } ... } catch (SQLException sqlEx) { ... } } private int updateEntity(XEntity entity) throws SQLException { PreparedStatement prepStmt = this.getUpdatePreparedStmt(); ... return prepStmt.executeUpdate(); } private void insertEntity(XEntity entity) throws SQLException { ... this.getInsertPreparedStmt().executeUpdate(); } |
问题现在解决了。我在下面提供了一个答案。
您可以尝试使用Postgres SQL"merge"或"replace"
这个测试逻辑可以工作。
1 2 3 | if (this.updateEntity((XEntity) entity) == 0) { this.insertEntity((XEntity) entity); } |
问题出在更新记录的方法中。update prepared语句中的where子句使用了不同的数据(包含空格的数据),因此updateEntity将始终返回0。这就是为什么只进行了插入,而不是更新的原因。非常感谢你的帮助。
如果要使用相同的方法插入和更新数据,则需要首先检查数据是否存在。用于插入新对象的SQL命令是
然而,这是一个解决方法。您真的需要澄清您的实现,并制定不同的方法来添加或更新数据。在业务方面,这显然是两个非常不同的函数,所以在我看来,两个方法都是一个设计问题。
您可以通过JDBC以字符串形式传递update命令。
根据这篇文章,你必须写两个陈述。