DEVFYI - Developer Resource - FYI

What are the standard isolation levels defined by JDBC?

JDBC Interview Questions and Answers


(Continued from previous question...)

What are the standard isolation levels defined by JDBC?

The values are defined in the class java.sql.Connection and are:
* TRANSACTION_NONE
* TRANSACTION_READ_COMMITTED
* TRANSACTION_READ_UNCOMMITTED
* TRANSACTION_REPEATABLE_READ
* TRANSACTION_SERIALIZABLE

(Continued on next question...)

Other Interview Questions