When to use which bean?

Entity beans are effective when application wants to access one row at a time. If many rows needs to be fetched, using session beans can be better alternative Java class (for example, Integer).
Entity beans are efficient when working with one row at a time Cause a lot of network trafic.
Session Beans are efficient when client wants to access database directry.
–fetching/updating multiple rows from the database

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions