Go to the source code of this file.
|
const long | NONE = 0 |
| indicates that transactions are not supported. More...
|
|
const long | READ_UNCOMMITTED = 1 |
| Dirty reads, non-repeatable reads and phantom reads can occur. More...
|
|
const long | READ_COMMITTED = 2 |
| Dirty reads are prevented; non-repeatable reads and phantom reads can occur. More...
|
|
const long | REPEATABLE_READ = 4 |
| Dirty reads and non-repeatable reads are prevented; phantom reads can occur. More...
|
|
const long | SERIALIZABLE = 8 |
| Dirty reads, non-repeatable reads and phantom reads are prevented. More...
|
|