如何使用preparedstatement获取最后插入行的id?

时间:2013-02-13 02:14:08

标签: java mysql database postgresql jdbc

我使用以下代码向数据库插入一个新行,我需要获取最后一个插入行的id,但是当我运行代码时它会显示以下消息:

SEVERE: java.sql.SQLException: Generated keys not requested. You need to specify   
Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate() or 
Connection.prepareStatement().

当我使用下面的代码时,虽然我选择了executeUpdate(String sql)

,但它会出错
  ps.executeUpdate(ps.RETURN_GENERATED_KEYS);
  error >> no suitable method found for executeUpdate(int)

表格如下:

       credential 
          int         ID   primary key, auto increment
          varchar(10) name 

我的代码

String Insert_Credential = "Insert into credential values("
                    + "?,?)";
            ps = con.prepareStatement(Insert_Credential);
            ps.setInt(1, 0);
            ps.setString(2, "username");
            ps.executeUpdate();
            ResultSet generatedKeys = ps.getGeneratedKeys();
        if (generatedKeys.next()) {
             System.out.println("id is"+generatedKeys.getLong(1));
             return generatedKeys.getInt(1);
        } else {
            throw new SQLException("Creating user failed, no generated key obtained.");
        }

1 个答案:

答案 0 :(得分:5)

ps.executeUpdate(ps.RETURN_GENERATED_KEYS)

你发明了那个。它不存在。

ps = con.prepareStatement(Insert_Credential);

这并不告诉PreparedStatement返回生成的密钥。你需要这个:

ps = con.prepareStatement(Insert_Credential, Statement.RETURN_GENERATED_KEYS);