Multiple-database support in Yii

Comparing #3 with #4

Revision #4 was created by phazei phazei on Aug 2, 2012, 8:18:18 PM.

Added note for 1.1.11 and multiple database support in Gii.

Content

[...]
Once this is defined, the second database is referred to as `Yii::app()->dbadvert` rather than `Yii::app()->db` (of course, the first is still available).

But we can do much better integration than this, starting with Gii and ending with AR support.
Using Gii
---------
Gii can use multiple database connections in Yii > 1.1.11.
 
 
If you are using a previous version, 
Gii only knows how to use the primary database connection, so for a brief time while creating models/controllers/crud, you'll have to edit your `protected/config/main.php` file to temporarily make the advertising database the primary `db` connection:

```php
// protected/config/main.php
'components' => array(
# 'db' => array(
[...]