Closed
Description
Method DefaultDataAccessStrategy.insert(...)
invokes method JdbcOperations.update(PreparedStatementCreator, KeyHolder)
even in case, that the primary key is defined by the user. This creates probably some overhead and also fails on JDBC drivers, which don't support retrieving of generated keys.
The method should rather invoke JdbcOperations.update(PreparedStatementCreator)
in case, that the primary key value is already defined in time of INSERT.