setTransactionIsolationLevel() public method
Sets the isolation level of the current transaction.
See also http://www.cubrid.org/manual/91/en/sql/transaction.html#database-concurrency.
public void setTransactionIsolationLevel ( $level ) | ||
---|---|---|
$level | string |
The transaction isolation level to use for this transaction. This can be one of yii\db\Transaction::READ_UNCOMMITTED, yii\db\Transaction::READ_COMMITTED, yii\db\Transaction::REPEATABLE_READ and yii\db\Transaction::SERIALIZABLE but also a string containing DBMS specific syntax to be used after |
Please login to continue.