嗨,我正在使用JDBC通过Java连接数据库。
现在,我执行一些插入查询,并且需要获取最后插入值的ID(因此,在之后stmt.executeUpdate)。
stmt.executeUpdate
我不需要类似之类的东西SELECT id FROM table ORDER BY id DESC LIMIT 1,因为我可能有并发问题。
SELECT id FROM table ORDER BY id DESC LIMIT 1
我只需要检索与上一次插入相关的ID(关于我的Statement实例)。
我试过了,但是似乎在JDBC上不起作用:
public Integer insertQueryGetId(String query) { Integer numero=0; Integer risultato=-1; try { Statement stmt = db.createStatement(); numero = stmt.executeUpdate(query); ResultSet rs = stmt.getGeneratedKeys(); if (rs.next()){ risultato=rs.getInt(1); } rs.close(); stmt.close(); } catch (Exception e) { e.printStackTrace(); errore = e.getMessage(); risultato=-1; } return risultato; }
实际上,每次risultato = -1,我得到java.sql.SQLException: Generated keys not requested. You need to specify Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate() or Connection.prepareStatement().
risultato = -1
java.sql.SQLException: Generated keys not requested. You need to specify Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate() or Connection.prepareStatement().
我该如何解决这个问题?谢谢Stackoverflow人们:)
您不会只是更改:
numero = stmt.executeUpdate(query);
至:
numero = stmt.executeUpdate(query, Statement.RETURN_GENERATED_KEYS);
查看JDBC Statement接口的文档。
Statement
更新 :显然对此答案有很多困惑,但是我的猜测是,困惑的人们没有在所问问题的背景下阅读它。如果您采用OP在他的问题中提供的代码,并替换我建议的单行(第6行),则一切正常。该numero变量是完全无关的,它被设置后,从来没有读过它的价值。
numero