what is meant by Transaction Isolation Levels?
Answer Posted / shraddha
Connection.setTransactionIsolation (level)
TRANSACTION_READ_UNCOMMITTED Allows dirty reads, non-
repeatable reads, and phantom reads to occur.
TRANSACTION_READ_COMMITTED Ensures only committed data
can be read.
TRANSACTION_REPEATABLE_READ Is close to
being "serializable," however, "phantom" reads are possible.
TRANSACTION_SERIALIZABLE Dirty reads, non-repeatable
reads, and phantom reads are prevented. Serializable.
A "phantom" read occurs when one transaction reads all rows
that satisfy a WHERE condition, and a second transaction
inserts a row that satisfies that WHERE condition, the
first transaction then rereads for the same condition,
retrieving the additional "phantom" row in the second read.
In addition, JDBC defines an additional constant,
TRANSACTION_NONE, which is used to indicate that the driver
does not support transactions.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between servletconfig and servletcontext in servlet?
Can we use the constructor, instead of init(), to initialize servlet?
How can you use a servlet to generate a plain text instead of html?
What’s the difference between sendredirect and forward methods
What are the types of servlet?
What is a servlet context object?
What is httpservlet and how it is different from genericservlet?
What are the servlet events?
What is the importance of init() method in Servlet ?
Can you explain in detail 'javax.servlet' package?
Explain request dispatcher and its methods.
What do you mean by request dispatcher in servlet? Also explain its methods.
How can we invoke another servlet in a different application?
I Have A Plan to develop a Project in Struts,I want the template of struts project with Hibernate.Canany body provide me the required information?
What is the difference between encodeRedirectUrl and encodeURL?