Heim  >  Artikel  >  Backend-Entwicklung  >  Yii2 框架自带的ActiveRecord 事务嵌套分析

Yii2 框架自带的ActiveRecord 事务嵌套分析

WBOY
WBOYOriginal
2016-06-06 20:25:002400Durchsuche

ActiveRecord 这个class文件update方法里面如何下:

public function update($runValidation = true, $attributeNames = null)

<code>{
    if ($runValidation && !$this->validate($attributeNames)) {
        Yii::info('Model not updated due to validation error.', __METHOD__);
        return false;
    }

    if (!$this->isTransactional(self::OP_UPDATE)) {
        return $this->updateInternal($attributeNames);
    }

    $transaction = static::getDb()->beginTransaction();
    try {
        $result = $this->updateInternal($attributeNames);
        if ($result === false) {
            $transaction->rollBack();
        } else {
            $transaction->commit();
        }
        return $result;
    } catch (\Exception $e) {
        $transaction->rollBack();
        throw $e;
    }
}


</code>

为什么update底层也用了事务操作,如果在外面也开启事务,事务嵌套,会造成什么影响?

回复内容:

ActiveRecord 这个class文件update方法里面如何下:

public function update($runValidation = true, $attributeNames = null)

<code>{
    if ($runValidation && !$this->validate($attributeNames)) {
        Yii::info('Model not updated due to validation error.', __METHOD__);
        return false;
    }

    if (!$this->isTransactional(self::OP_UPDATE)) {
        return $this->updateInternal($attributeNames);
    }

    $transaction = static::getDb()->beginTransaction();
    try {
        $result = $this->updateInternal($attributeNames);
        if ($result === false) {
            $transaction->rollBack();
        } else {
            $transaction->commit();
        }
        return $result;
    } catch (\Exception $e) {
        $transaction->rollBack();
        throw $e;
    }
}


</code>

为什么update底层也用了事务操作,如果在外面也开启事务,事务嵌套,会造成什么影响?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:mysql 联合索引命中规则Nächster Artikel:php调Java接口传值