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.

In Spring, how can I insert data in table using jdbcTemplate. Can anyone please provide me a code sample for doing this.

share|improve this question

2 Answers

You'll need a datasource for working with JdbcTemplate.

JdbcTemplate template = new JdbcTemplate(yourDataSource);

template.update(new PreparedStatementCreator() {
            public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {

            PreparedStatement statement = connection.prepareStatement(ourInsertQuery);
            //statement.setLong(1, beginning); set parameters you need in your insert

            return statement;
        }
    });
share|improve this answer

1.

  Define connection parameters

2.

  Open the connection

3.

  Specify the statement

4.

  Prepare and execute the statement

5.

  Set up the loop to iterate through the results (if any)

6.

  Do the work for each iteration

7.

  Process any exception

8.

  Handle transactions

9.

  Close the connection
share|improve this answer
1  
That's from the Spring frame reference. Yet another useless copy&paste answer without attribution from you. – DarkDust Mar 4 '11 at 7:12

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.