Create entities from database views using eclipse and JPA -
can create entities classes database views using jpa tools way database tables?
manuj
you use same syntax creating entity classes table. differences are: 1) typically views read only, entity used read only, , 2) entities need have primary key, view need either have 1 column has unique identity values, or combination of columns can used unique identity.
Comments
Post a Comment