0 votes
in Spring by

What does the update() method of JdbcTemplate typically return?

a) The primary key of the updated record

b) A boolean indicating success

c) The number of rows affected

d) The updated object

1 Answer

0 votes
by
c) The number of rows affected

Explanation:

The update() method in JdbcTemplate usually returns the number of rows affected by the executed query.
...