This post originated from an RSS feed registered with Java Buzz
by dion.
Original Post: DDL from OO Design
Feed Title: techno.blog(Dion)
Feed URL: http://feeds.feedburner.com/dion
Feed Description: blogging about life the universe and everything tech
Merrick talks about generating DDL from OO design.
Letting a computer generate stuff never seems to be a perfect scenario :)
The names that it generates are never human readable. Assumptions are made without context, and you will never be totally happy with it.
So, if you really care about these things then you have two choices:
Don't use the tools!: That's right. Do the DDL yourself and the mapping to your OO model
Generate, and then fix: You can use the tool for a quick skeleton and then go through changing things. This can sometimes take more time!
I *do* like the auto-gen when I am doing prototypes / playing around as I don't even have to think about the DDL then. In this scenario it is a nice feature for the OO mapper to have.