Database transactions using a session bean and POJO's
Hi,
I have a question about session beans, pojo's and database transactions.
First a small explanation:
* I have a stateless session bean calling simple pojo's that are responsible for table updates.
* Each pojo creates his own database connection (via a pool) before executing the db update.
My question:
What happens with the database transaction in this case?
What happens if there's problem during the update of my second pojo?
Is the complete transaction rolled back or only the transaction of my second pojo?
Thanx for the information,
Piet

