Hi,
In our project, as developers we are having read/write permissions to Database views only. We do not have access to tables.
Can I design java beans based on the columns in Views and perform read/write operations using hibernate?
What I mean is, if suppose I have a view Table1_Table2_View defined on Table1 and Table2. Now If I update the java bean, will it update the corresponding Table1 and Table2 column values?
Is there a standard way that we can model our persistence layer using Hibernate based on Database View definitions?
Thanks, Chiru
|