Hi,
How can I generate insert statements like insert into table (sequence.nextval, 'b0)
using hibernate?
Hibernate currently selects the sequence.nextval
value and only then it uses the value to insert the entry in the table.
Note: I'm not very fond of custom id generators.