adspace


What is isolation level? How to set it?

Answer Posted / Javed Akhtar

Isolation level determines how transactions interact with other transactions. You can set the isolation level when creating a statement or connection in JDBC using the `java.sql.Connection.setTransactionIsolation` method or using appropriate properties when connecting to the database.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we return resultset in java?

990