Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use hibernate hbm2ddl to generate db schema script from entity classes. it works well but each line ends without a semicolon, which makes me have to manually add them. Is there any way to save me from this stupid job?

share|improve this question

1 Answer

up vote 1 down vote accepted

using SchemaExport directly it is simple:

new SchemaExport(config).setDelimiter(";").Execute(...);
share|improve this answer
Thank you Firo . – nixil Apr 24 '12 at 10:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.