Public Attributes | |
const | READ_COMMITTED = 0x01 |
const | READ_UNCOMMITTED = 0x02 |
const | REPEATABLE_READ = 0x03 |
const | SERIALIZABLE = 0x04 |
Protected Attributes | |
$names |
Definition at line 20 of file IsolationLevel.class.php.
const IsolationLevel::READ_COMMITTED = 0x01 |
Definition at line 22 of file IsolationLevel.class.php.
const IsolationLevel::READ_UNCOMMITTED = 0x02 |
Definition at line 23 of file IsolationLevel.class.php.
const IsolationLevel::REPEATABLE_READ = 0x03 |
Definition at line 24 of file IsolationLevel.class.php.
const IsolationLevel::SERIALIZABLE = 0x04 |
Definition at line 25 of file IsolationLevel.class.php.
IsolationLevel::$names [protected] |
Initial value:
array( self::READ_COMMITTED => 'read commited', self::READ_UNCOMMITTED => 'read uncommitted', self::REPEATABLE_READ => 'repeatable read', self::SERIALIZABLE => 'serializable' )
Reimplemented from Enumeration.
Definition at line 27 of file IsolationLevel.class.php.