vote up 1 vote down star

Is it possible to get the @@identity from the SQL insert on a Spring jdbc template call? If so, how?

TIA

flag

70% accept rate

3 Answers

vote up 2 vote down check

The JDBCTemplate.update method is overloaded to take an object called a GeneratedKeyHolder which you can use to retrieve the autogenerated key. For example (code taken from here):

final String INSERT_SQL = "insert into my_test (name) values(?)";
final String name = "Rob";
KeyHolder keyHolder = new GeneratedKeyHolder();
jdbcTemplate.update(
    new PreparedStatementCreator() {
        public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
            PreparedStatement ps =
                connection.prepareStatement(INSERT_SQL, new String[] {"id"});
            ps.setString(1, name);
            return ps;
        }
    },
    keyHolder);
// keyHolder.getKey() now contains the generated key
link|flag
That would be the "one liner" I am looking for here. Nice. Sad thing is I saw the link but glossed past it due to this: "part of the JDBC 3.0 standard". (I don't think we use JDBC 3.0, but I also don't think this is relevant). – javamonkey79 Nov 3 at 16:21
vote up 1 vote down

How about SimpleJdbcInsert.executeAndReturnKey?

link|flag
Wow, I didn't really know about that class - kinda neat. Thanks. +1 – javamonkey79 Nov 12 at 1:15
vote up 2 vote down

I don't know if there is a "one-liner" but this seems to do the trick (for MSSQL at least):

// -- call this after the insert query...
this._jdbcTemplate.queryForInt( "select @@identity" );

Decent article here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.