i want to generate the Create Table Script for a specific entity Class.
I can auto-generate the complete Script for all of my classes with hibernate (hbm2dll tool) ( Auto generate data schema from JPA annotated entity classes ) but i don't know how to filter this so only the part that relates to one entity class remains.
Greetings, Laures
I handled the script generation in code myself. the base queries are generated by calling the hbm2ddl tool and my code adds some details to them (like adding if not exists to the create queries; adding certain create index queries; ...)