Field TRANSACTION_READ_UNCOMMITTED
Field type: int
Member of:
java.sql.Connection
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
con.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
2
case Connection.TRANSACTION_READ_UNCOMMITTED:
3
conn.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
4
conn.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
5
case Connection.TRANSACTION_READ_UNCOMMITTED:
6
connection.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
7
if (level != Connection.TRANSACTION_READ_UNCOMMITTED) {
8
} else if (isoLevel == Connection.TRANSACTION_READ_UNCOMMITTED) {
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.