Quantcast
Channel: Enterprise JavaBeans (EJB)
Viewing all articles
Browse latest Browse all 15

What are transaction isolation levels in EJB?

$
0
0

<!--[if !supportLists]-->1. <!--[endif]-->Transaction_read_uncommitted- Allows a method to read uncommitted data from a DB(fast but not wise).
<!--[if !supportLists]-->2. <!--[endif]-->Transaction_read_committed- Guarantees that the data you are getting has been committed.
<!--[if !supportLists]-->3. <!--[endif]-->Transaction_repeatable_read – Guarantees that all reads of the database will be the same during the transaction (good for read and update operations).

read more


Viewing all articles
Browse latest Browse all 15

Trending Articles