How many isolation levels are supported in JDBC and what
are they?



How many isolation levels are supported in JDBC and what are they?..

Answer / harish

total five isolation levels that are supported by JDBC.
they are
1. TRANSACTION_SERIALIZABLE
2. TRANSACTION_READ_UNCOMMITED
3. TRANSACTION_REPEATABLE-READ
4. TRANSACTION_READ_COMMITED
5. TRANSACTION_NONE

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More JDBC Interview Questions

Is JDBC a language or Application?

3 Answers  


How can we maintain the integrity of a database by using jdbc?

0 Answers  


Explain in detail about JDBC and its general features?

0 Answers  


What are the different types of JDBC drivers?

0 Answers  


What is getconnection method in java?

0 Answers  






How can we retrieve the file in the oracle database?

0 Answers  


How transactions are performed using JDBC ?

2 Answers  


What is jdbc and why is it required?

0 Answers  


What is the purpose of jdbc resultset interface?

0 Answers  


Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");

2 Answers  


Explain about the Try Block?

0 Answers  


What do you mean by batch processing in jdbc?

0 Answers  


Categories