Hi
I'm trying to write a program with Hibernate. My domain is now complete and I'm writing the database.
I got confused about what to do. Should I
- make my sql tables in classes and let the Hibernate make them
- Or create tables in the database and reverse engineer it and let the hibernate make my classes?
I heard the first option one from someone and read the second option on the Netbeans site.
Does any one know which approach is correct?