This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, Is it possible to store entity beans in OODBMS?. If so how inheritance is managed with entity beans?. Regards, Pasu
Simon Brown
sharp shooter, and author
Ranch Hand
Joined: May 10, 2000
Posts: 1860
posted
0
I'm not sure that you can store the actual entity beans within an object database, since you generally have to have them extend special classes or implement specific interfaces provided by the database vendor. You can however, using BMP, store representations of the entity beans within an object database. For example, you could extract the data into a value object type structure and insert this. Probably also means that you have to manage any relationships, etc too. Anybody else care to comment? Simon
Peter Reinhardt
Ranch Hand
Joined: Aug 02, 2002
Posts: 57
posted
0
Originally posted by Simon Brown: I'm not sure that you can store the actual entity beans within an object database, since you generally have to have them extend special classes or implement specific interfaces provided by the database vendor.
I don't think this is really true. An OODBMS vendor could provide a "plugin" for enabling a transparent CMP persistency to the database (like e.g. Toplink).
Peter. [ August 06, 2002: Message edited by: Peter Reinhardt ]