/** * Sets the transaction isolation level. * * @param integer $level The level to set. */ public function setTransactionIsolation($level) { $this->_transactionIsolationLevel = $level; return $this->executeUpdate($this->_platform->getSetTransactionIsolationSQL($level)); }