Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When inserting using jdbctemplate, I am doing this:

getJdbcTemplate().update("insert users (...) values(?,?,?)", user.get...);

  1. How do I get the inserted id back from msql? (it is the primary key)

For updates, is it possible to return a boolean if the update was successful?

getJdbcTemplate().update("delete users where id = ?", id);
share|improve this question

1 Answer

JdbcTemplate.update() returns number of rows affected - so you not only know that delete/update was succesfull, you also now how many rows were deleted/updated.

To get generated (from sequence) primary keys, use org.springframework.jdbc.core.JdbcTemplate.update(PreparedStatementCreator, KeyHolder) method which allows you to pass e.g. org.springframework.jdbc.support.GeneratedKeyHolder which will collect your keys.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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