I will be implementing a java swing app. At first, I wanted to use apache derby db, because I needed embeded db.
But it turned out that it does not plays nice with hibernate (https://forum.hibernate.org/viewtopic.php?f=6&t=1003258&p=2433546#p2433546, http://stackoverflow.com/questions/3322575/netbeans-derby-hibernate).
Hibernate ignores auto generated keys and foreign keys...
Can you recommand some db that can be embeded and nicely used with hibernate, or derby can work well with hibernate but I'm doing it wrong?
Thanks in advance.