Hibernate Team |
|
Joined: Tue Aug 26, 2003 7:19 pm Posts: 2364 Location: Brisbane, Australia
|
The sequence id generator used the databases sequence as defined by the generator argument. The database you are using should support sequences for this to work. Maybe you could try native generation which chooses an appropriate mechanism for the database dialect and see how you go. Note: If the database has sequences native by default will use a sequence named hibernate_seq. You can see the name in the sql commands used. You will need to create the sequence in the database before deployment.
|
|