I map my database tables to my Java objects. Usually I call my plural tables that the table containing information about books is called BOOKS. The java object, however, is a single book and should be called Book. Similarly for AUTHORS / Author, etc.
On the other hand, simplifying it does the same for the domain object and table.
Is there some kind of naming convention that people follow? I assume this applies to applications in general, and not just when displaying O / R.
source
share