I'm moving from Hibernate to EclipseLink.
What I realized is, that Hibernates ddl-generation creates underscore-separated sql-columns for camel-case columns with
<property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.ImprovedNamingStrategy" />
in my persistence.xml. I like that a lot.
My question is: How can I get EclipseLink to do that?
Jonny