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

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -