我正在使用JDBC连接到一个
Java DB数据库,并且要检索插入的最后一条记录的id(这是自动增量).
我看到这是一个常见的问题,但是我看到solutions使用例如MS sql Server,与Java DB相当的是什么?
解决方法
不需要使用DBMS特定的sql.
当您通过preparing your statement传递自动生成的列的名称时,您可以使用getGeneratedKeys()
PreparedStatement pstmt = connection.prepareStatement( "insert into some_table (col1,col2,..) values (....)",new String[] { "ID_COLUMN"} ); pstmt.executeUpdate(); ResultSet rs = pstmt.getGeneratedKeys(); // will return the ID in ID_COLUMN