Multiple-database support in Yii

Comparing #2 with #3

Revision #3 was created by balrok balrok on Mar 2, 2012, 5:31:42 PM.

corrected indention of code

Content

[...]
self::$dbadvert->setActive(true);
return self::$dbadvert;
}
else
throw new CDbException(Yii::t('yii','Active Record requires a "db" CDbConnection application component.'));
    }
}
...
```
This method is **purposely** static: the underlying cached `$dbadvert` value is, so the function may as well be be too. Now, with this helper prepared, we can edit the model itself:
[...]