Hello ,
Requirement is that an Entity Bean to work with multiple tables.
Is it possible to write the bean using Container Managed or should i go for bean managed.
Thanks in Advance
Bye
C.Bhaskaran
-
I need an Entity Bean to work with multiple tables (6 messages)
- Posted by: chandra sekharan bhaskaran
- Posted on: November 30 2000 09:04 EST
Threaded Messages (6)
- I need an Entity Bean to work with multiple tables by Vinod Nair on November 30 2000 15:41 EST
- I need an Entity Bean to work with multiple tables by chandra sekharan bhaskaran on December 02 2000 05:34 EST
- I need an Entity Bean to work with multiple tables by feng liu on December 20 2000 04:22 EST
- I need an Entity Bean to work with multiple tables by chandra sekharan bhaskaran on December 02 2000 05:34 EST
- I need an Entity Bean to work with multiple tables by vishal vishal on November 30 2000 19:17 EST
- I need an Entity Bean to work with multiple tables by Dimitri Rakitine on December 01 2000 02:55 EST
- I need an Entity Bean to work with multiple tables by Rajit Gulati on December 01 2000 12:36 EST
-
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: Vinod Nair
- Posted on: November 30 2000 15:41 EST
- in response to chandra sekharan bhaskaran
Correct me if i am wrong.
I have read CMP Entity beans do not map to multiple tables.
Regards
-
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: chandra sekharan bhaskaran
- Posted on: December 02 2000 05:34 EST
- in response to Vinod Nair
I need an Entity Bean to work with multiple tables
Yes You are Right
Bye
C.Bhaskaran -
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: feng liu
- Posted on: December 20 2000 04:22 EST
- in response to chandra sekharan bhaskaran
maybe in EJB 2.0 can use Entity Bean to work with multiple talbes. -
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: vishal vishal
- Posted on: November 30 2000 19:17 EST
- in response to chandra sekharan bhaskaran
hi chandra
can you explain what you mean by working with multiple tables ?
If you are talking about multiple joins ..none of the appservers have a full fledged cmp.
they use a 3rd party persistence mgr viz
CocoBase from Thought Inc
or
Toplink from (cant recollect)
DOnt know if this helps
Thanks -
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: Dimitri Rakitine
- Posted on: December 01 2000 02:55 EST
- in response to chandra sekharan bhaskaran
One option is to use database view and a CMP bean. -
I need an Entity Bean to work with multiple tables[ Go to top ]
- Posted by: Rajit Gulati
- Posted on: December 01 2000 12:36 EST
- in response to chandra sekharan bhaskaran
Hi,
There is a catch using views over multiple tables in most databases, we cannot update/insert views, we can just select from them. So i guess view with one CMP may not work.
u may use BMP(preferably) or a CMP with java objects as references that can have methods like load and save u can call from your bean's callback methods.
Thanks!
--RG