|
With the basic attached 'Person' definition attached (also mentioned on the forum post):
Person person = new Person(); person.setName("Test Name"); Session session = getSession(); session.saveOrUpdate(person);
always results in the warning logged: WARN [org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl] - <HHH000386: ResultSet had no statement associated with it, but was not yet registered>
my guess was 'GetGeneratedKeysDelegate' was obtaining it's own ResultSet for the id generation but registering it in the was expected by JdbcCoordinatorImpl.
|